| 82 |
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity,IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute,
pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`,
pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`,
m.`name` AS manufacturer_name, p.`id_manufacturer` as id_manufacturer,
image_shop.`id_image` id_image, il.`legend`,
ps.`quantity` AS sales, t.`rate`, pl.`meta_title`, pl.`meta_description`,
DATEDIFF(p.`date_add`, DATE_SUB("2026-08-17 00:00:00",
INTERVAL 700 DAY)) > 0 AS new FROM `ps_product_sale` ps
LEFT JOIN `ps_product` p ON ps.`id_product` = p.`id_product`
LEFT JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_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 `ps_product_lang` pl
ON p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1
LEFT JOIN `ps_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 `ps_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1)
LEFT JOIN `ps_manufacturer` m ON (m.`id_manufacturer` = p.`id_manufacturer`)
LEFT JOIN `ps_tax_rule` tr ON (product_shop.`id_tax_rules_group` = tr.`id_tax_rules_group`)
AND tr.`id_country` = 8
AND tr.`id_state` = 0
LEFT JOIN `ps_tax` t ON (t.`id_tax` = tr.`id_tax`)
LEFT JOIN ps_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
WHERE product_shop.`active` = 1
AND product_shop.`visibility` != 'none' AND EXISTS(SELECT 1 FROM `ps_category_product` cp
JOIN `ps_category_group` cg ON (cp.id_category = cg.id_category AND cg.`id_group` =1)
WHERE cp.`id_product` = p.`id_product`)
ORDER BY `sales` DESC
LIMIT 0, 4 |
8.550
ms
|
1728 |
Yes
|
|
/classes/ProductSale.php:130
/src/Adapter/BestSales/BestSalesProductSearchProvider.php:59 (getBestSales)
/modules/ps_bestsellers/ps_bestsellers.php:195 (runQuery)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 2 |
SELECT SQL_NO_CACHE c.`name`, cl.`id_lang`, IF(cl.`id_lang` IS NULL, c.`value`, cl.`value`) AS value, c.id_shop_group, c.id_shop
FROM `ps_configuration` c
LEFT JOIN `ps_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
7.880
ms
|
4259 |
|
|
/classes/Configuration.php:162
/classes/Configuration.php:210 (loadConfiguration)
/classes/Configuration.php:283 (get)
/classes/shop/Shop.php:379 (getMultiShopValues)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 21 |
SELECT SQL_NO_CACHE h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module
FROM `ps_module` m
INNER JOIN ps_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 1)
INNER JOIN `ps_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `ps_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `ps_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` |
4.535
ms
|
2415 |
Yes
|
Yes
|
/classes/Hook.php:1497
/classes/Hook.php:803 (getAllHookRegistrations)
/classes/Hook.php:945 (getHookModuleExecList)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 290 |
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) AS quantity, IFNULL(product_attribute_shop.id_product_attribute, 0) AS id_product_attribute,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, pl.`description`, pl.`description_short`, pl.`available_now`,
pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_title`, pl.`name`, image_shop.`id_image` id_image,
il.`legend` as legend, m.`name` AS manufacturer_name, cl.`name` AS category_default,
DATEDIFF(product_shop.`date_add`, DATE_SUB("2026-08-17 00:00:00",
INTERVAL 700 DAY)) > 0 AS new, product_shop.price AS orderprice, psales.`quantity` as sales
FROM `ps_category_product` cp
LEFT JOIN `ps_product` p
ON p.`id_product` = cp.`id_product`
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_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 ps_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 `ps_category_lang` cl
ON (product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
LEFT JOIN `ps_product_lang` pl
ON (p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
LEFT JOIN `ps_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 `ps_image_lang` il
ON (image_shop.`id_image` = il.`id_image`
AND il.`id_lang` = 1)
LEFT JOIN `ps_manufacturer` m
ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `ps_product_sale` psales
ON psales.`id_product` = p.`id_product`
WHERE product_shop.`id_shop` = 1
AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") ORDER BY p.`id_product` DESC
LIMIT 0,6 |
3.143
ms
|
864 |
Yes
|
|
/classes/Category.php:1074
/src/Adapter/Category/CategoryProductSearchProvider.php:81 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:98 (getProductsOrCount)
/modules/stfeaturedslider/stfeaturedslider.php:160 (runQuery)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 242 |
SELECT SQL_NO_CACHE DISTINCT(nl.`id_prestablog_news`), n.*, nl.*,
LEFT(nl.`title`, 80) as title,
(
SELECT count(cn.`id_prestablog_commentnews`)
FROM `ps_prestablog_commentnews` cn
WHERE cn.`news` = n.`id_prestablog_news`
AND cn.`actif` = 1
) as count_comments,
n.`id_prestablog_news` as `id`
FROM `ps_prestablog_news_lang` nl
LEFT JOIN `ps_prestablog_news` n
ON (n.`id_prestablog_news` = nl.`id_prestablog_news`)
LEFT JOIN `ps_prestablog_correspondancecategorie` cc
ON (n.`id_prestablog_news` = cc.`news`)
WHERE 1=1
AND EXISTS (
SELECT 1
FROM `ps_prestablog_categorie` pc
JOIN `ps_prestablog_categorie_group` pcg
ON (
pc.id_prestablog_categorie = pcg.id_prestablog_categorie
AND pcg.`id_group` IN (1)
)
WHERE cc.`categorie` = pc.`id_prestablog_categorie`
)
AND n.`id_shop` = 1
AND nl.`id_lang` = 1
AND n.`actif` = 1
AND nl.`actif_langue` = 1
AND ( cc.`categorie` = 1 OR cc.`categorie` = 2 OR cc.`categorie` = 3 OR cc.`categorie` = 4 OR cc.`categorie` = 5 )
AND TIMESTAMP(n.`date`) <= '2026-08-17 12:47:49'
ORDER BY n.`date` desc
LIMIT 0, 16 |
2.721
ms
|
54 |
Yes
|
|
/modules/prestablog/class/news.php:1068
/modules/prestablog/prestablog.php:11995 (getListe)
/modules/prestablog/prestablog.php:12120 (returnUniversalNewsListSubBlocks)
/modules/prestablog/prestablog.php:11935 (showSubBlocks)
/classes/Hook.php:1234 (hookDisplayHome)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 254 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `ps_st_notification` snl
INNER JOIN ps_st_notification_shop st_notification_shop
ON (st_notification_shop.id_st_notification = snl.id_st_notification AND st_notification_shop.id_shop = 1)
LEFT JOIN `ps_st_notification_lang` snll ON (snl.`id_st_notification` = snll.`id_st_notification`)
WHERE snl.`active`=1 AND snll.`id_lang` = 1
ORDER BY snl.`position` |
1.857
ms
|
1 |
Yes
|
|
/modules/stnotification/classes/StNotificationClass.php:221
/modules/stnotification/stnotification.php:1252 (getNotification)
/modules/stnotification/stnotification.php:1245 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:57 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:26 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 20 |
SELECT SQL_NO_CACHE lower(name) as name
FROM `ps_hook` h
WHERE (h.active = 1) |
1.700
ms
|
1264 |
|
|
/classes/Hook.php:1605
/classes/Hook.php:903 (getHookStatusByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 532 |
SELECT SQL_NO_CACHE p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity, pl.`description`, pl.`description_short`, pl.`link_rewrite`, pl.`meta_description`,
pl.`meta_title`, pl.`name`, pl.`available_now`, pl.`available_later`, image_shop.`id_image` id_image, il.`legend`, m.`name` AS manufacturer_name,
(DATEDIFF(product_shop.`date_add`,
DATE_SUB(
"2026-08-17 00:00:00",
INTERVAL 700 DAY
)
) > 0) as new,
product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_product_lang` `pl` ON
p.`id_product` = pl.`id_product`
AND pl.`id_lang` = 1 AND pl.id_shop = 1
LEFT JOIN `ps_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 `ps_image_lang` `il` ON image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1
LEFT JOIN `ps_manufacturer` `m` ON m.`id_manufacturer` = p.`id_manufacturer`
LEFT JOIN `ps_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 ps_stock_available stock
ON (stock.id_product = `p`.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
WHERE (product_shop.`active` = 1) AND (product_shop.`visibility` IN ("both", "catalog")) AND (DATEDIFF(product_shop.`date_add`,
DATE_SUB(
"2026-08-17 00:00:00",
INTERVAL 700 DAY
)
) > 0) AND (EXISTS(SELECT 1 FROM `ps_category_product` cp
JOIN `ps_category_group` cg ON (cp.id_category = cg.id_category AND cg.`id_group` =1)
WHERE cp.`id_product` = p.`id_product`))
ORDER BY product_shop.`date_add` DESC
LIMIT 6 |
1.686
ms
|
1728 |
Yes
|
|
/classes/Product.php:2839
/modules/sthomenew/sthomenew.php:103 (getNewProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 0 |
SELECT SQL_NO_CACHE s.id_shop, CONCAT(su.physical_uri, su.virtual_uri) AS uri, su.domain, su.main
FROM ps_shop_url su
LEFT JOIN ps_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'www.calendrier-evenement.fr' OR su.domain_ssl = 'www.calendrier-evenement.fr')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
1.557
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:1372
/classes/shop/Shop.php:336 (findShopByHost)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 301 |
SELECT SQL_NO_CACHE a.`id_attribute`, a.`id_attribute_group`, al.`name`, agl.`name` as `group`, agl.`public_name` as `public_group`,
pa.`reference`, pa.`ean13`, pa.`isbn`, pa.`upc`, pa.`mpn`,
pal.`available_now`, pal.`available_later`
FROM `ps_attribute` a
LEFT JOIN `ps_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 1)
LEFT JOIN `ps_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `ps_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
LEFT JOIN `ps_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 1)
LEFT JOIN `ps_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 1)
WHERE pa.`id_product` = 236
AND pac.`id_product_attribute` = 32
AND agl.`id_lang` = 1 |
1.494
ms
|
1 |
|
|
/classes/Product.php:7217
/classes/Product.php:5599 (getAttributesParams)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 89 |
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 `ps_hook_module` hm
STRAIGHT_JOIN `ps_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `ps_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
1.450
ms
|
856 |
|
|
/classes/Hook.php:500
/classes/Hook.php:535 (getHookModuleList)
/classes/tax/TaxManagerFactory.php:43 (getModulesFromHook)
/classes/tax/TaxManagerFactory.php:22 (execHookTaxManagerFactory)
/classes/Product.php:3671 (getManager)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 468 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "stfeaturedslider" AND sec.`module_align` = 1
ORDER BY sec.`position` LIMIT 0, 50 |
1.397
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 77 |
SELECT SQL_NO_CACHE `name`
FROM `ps_hook`
WHERE `id_hook` = 962 LIMIT 1 |
1.388
ms
|
1 |
|
|
/classes/Hook.php:267
/classes/Hook.php:1024 (getNameById)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 90 |
SELECT SQL_NO_CACHE tr.*
FROM `ps_tax_rule` tr
JOIN `ps_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 ('45760' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '45760')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
1.383
ms
|
1 |
Yes
|
|
/classes/tax/TaxRulesTaxManager.php:86
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 75 |
SELECT SQL_NO_CACHE *
FROM `ps_st_social` s
LEFT JOIN `ps_st_social_lang` sl
ON (s.`id_st_social`=sl.`id_st_social` AND sl.`id_lang`=1)
INNER JOIN ps_st_social_shop st_social_shop
ON (st_social_shop.id_st_social = s.id_st_social AND st_social_shop.id_shop = 1) WHERE s.`active`=1 ORDER BY s.`position`, s.`id_st_social` |
1.379
ms
|
4 |
Yes
|
|
/modules/stsocial/classes/StSocialClass.php:114
/modules/stsocial/stsocial.php:1537 (getAll)
/modules/stsocial/stsocial.php:1251 (getWidgetVariables)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 7 |
SELECT SQL_NO_CACHE *
FROM `ps_country` a
LEFT JOIN `ps_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 1
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
1.343
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/config/config.inc.php:135 (__construct)
/index.php:20 (require_once)
|
| 76 |
SELECT SQL_NO_CACHE s.*, sl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_sticker` s
LEFT JOIN `ps_st_sticker_lang` sl ON (s.`id_st_sticker` = sl.`id_st_sticker` AND sl.`id_lang` = 1)
LEFT JOIN `ps_st_sticker_shop` ss ON (s.`id_st_sticker` = ss.`id_st_sticker`)
LEFT JOIN `ps_st_sticker_group` sg ON (s.`id_st_sticker` = sg.`id_st_sticker`)
WHERE ss.`id_shop` = 1 AND s.`active`=1 AND s.`type` IN (1,2,3,4,5,6,7) AND sg.`id_group` IN (1)
GROUP BY s.`id_st_sticker`
ORDER BY s.`position` ASC, s.`id_st_sticker` |
1.268
ms
|
1 |
Yes
|
Yes
|
/modules/ststickers/classes/StStickersClass.php:171
/modules/ststickers/ststickers.php:1673 (getAll)
/modules/ststickers/ststickers.php:1400 (getWidgetVariables)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 255 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stcurrencyselector" LIMIT 1 |
1.252
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 81 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 18 AND `id_shop` = 1 LIMIT 1 |
1.251
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 88 |
SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `ps_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `ps_hook_alias` ha
INNER JOIN `ps_hook` h ON ha.name = h.name |
1.246
ms
|
0 |
|
|
/classes/Hook.php:1565
/classes/Hook.php:244 (getAllHookIds)
/classes/tax/TaxManagerFactory.php:43 (getIdByName)
/classes/tax/TaxManagerFactory.php:22 (execHookTaxManagerFactory)
/classes/Product.php:3671 (getManager)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 80 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_bestsellers" LIMIT 1 |
1.238
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 44 |
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 1
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
1.235
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Currency.php:226 (__construct)
/src/Adapter/Currency/CurrencyDataProvider.php:81 (__construct)
/src/Adapter/Currency/CurrencyDataProvider.php:94 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:198 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 6 |
SELECT SQL_NO_CACHE l.*, ls.`id_shop`
FROM `ps_lang` l
LEFT JOIN `ps_lang_shop` ls ON (l.id_lang = ls.id_lang) |
1.226
ms
|
1 |
|
|
/classes/Language.php:1050
/config/config.inc.php:132 (loadLanguages)
/index.php:20 (require_once)
|
| 706 |
SELECT SQL_NO_CACHE `id_date_range`, `time_end`
FROM `ps_date_range`
WHERE `time_end` = (SELECT MAX(`time_end`) FROM `ps_date_range`) LIMIT 1 |
1.220
ms
|
8111104 |
|
|
/classes/DateRange.php:40
/classes/Page.php:102 (getCurrentRange)
/modules/statsdata/statsdata.php:121 (setPageViewed)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 41 |
SELECT SQL_NO_CACHE * FROM `ps_currency` c ORDER BY `iso_code` ASC |
1.178
ms
|
1 |
Yes
|
|
/classes/Currency.php:689
/src/Adapter/Currency/CurrencyDataProvider.php:64 (findAllInstalled)
/src/Core/Localization/Currency/DataLayer/CurrencyInstalled.php:69 (findAllInstalled)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (getAllInstalledCurrencyIsoCodes)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:198 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 49 |
SELECT SQL_NO_CACHE *
FROM `ps_group` a
LEFT JOIN `ps_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 1
WHERE (a.`id_group` = 1) LIMIT 1 |
1.160
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Group.php:61 (__construct)
/classes/Group.php:385 (__construct)
/classes/Cart.php:262 (getCurrent)
/classes/Cart.php:226 (setTaxCalculationMethod)
/classes/controller/FrontController.php:441 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 251 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_orders` o
LEFT JOIN `ps_order_cart_rule` ocr ON (ocr.`id_order` = o.`id_order`)
WHERE o.`id_customer` = 0
AND ocr.`deleted` = 0 AND ocr.`id_cart_rule` = 20 LIMIT 1 |
1.138
ms
|
31 |
|
|
/classes/order/Order.php:872
/classes/CartRule.php:473 (getDiscountsCustomer)
/classes/CartRule.php:601 (getCustomerCartRules)
/classes/Cart.php:541 (getCustomerHighlightedDiscounts)
/src/Adapter/Presenter/Cart/CartLazyArray.php:310 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6d/24/54/6d24549f42c10e35902ece6eb5c6e98e3efca41a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c5dba08_99068185)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:334 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:58 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c597b90_02199587)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:201 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:40 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 253 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 186 AND `id_shop` = 1 LIMIT 1 |
1.129
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:57 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:26 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 693 |
SELECT SQL_NO_CACHE snl.*, snll.`content`
FROM `ps_st_news_letter` snl
INNER JOIN ps_st_news_letter_shop st_news_letter_shop
ON (st_news_letter_shop.id_st_news_letter = snl.id_st_news_letter AND st_news_letter_shop.id_shop = 1)
LEFT JOIN `ps_st_news_letter_lang` snll ON (snl.`id_st_news_letter` = snll.`id_st_news_letter`)
WHERE snl.`active`=1 AND snll.`id_lang` = 1 AND snl.`location` IN (4)
ORDER BY snl.`position` |
1.089
ms
|
1 |
Yes
|
|
/modules/stnewsletter/classes/StNewsLetterClass.php:248
/modules/stnewsletter/stnewsletter.php:1745 (getNewsLetter)
/modules/stnewsletter/stnewsletter.php:1801 (_prepareHook)
/classes/Hook.php:1234 (hookDisplaySideBar)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:531 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 696 |
SELECT SQL_NO_CACHE *
FROM `ps_st_wishlist`
WHERE `id_customer` = 0
AND `id_shop` = 1
ORDER BY `name` ASC |
1.084
ms
|
4263 |
Yes
|
|
/modules/stwishlist/classes/StWishListClass.php:171
/modules/stwishlist/stwishlist.php:1165 (getByIdCustomer)
/classes/Hook.php:1234 (hookDisplaySideBar)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:531 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 55 |
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `categories` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
1.067
ms
|
17 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1572 (getNoPictureImage)
/classes/controller/FrontController.php:1724 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 79 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 154 AND `id_shop` = 1 LIMIT 1 |
1.062
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/override/classes/controller/FrontController.php:15 (exec)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 272 |
SELECT SQL_NO_CACHE smm.*,smml.`html`,smml.`title`,smml.`link`,smml.`cate_label`
FROM `ps_st_mega_menu` smm
LEFT JOIN `ps_st_mega_menu_lang` smml ON smm.`id_st_mega_menu`=smml.`id_st_mega_menu`
WHERE smml.`id_lang`=1 AND smm.`id_parent`=0 AND smm.`item_t`=0 AND smm.`active`=1 AND smm.id_shop = 1
ORDER BY smm.`location`, smm.`position` |
1.059
ms
|
5 |
Yes
|
|
/modules/stmegamenu/classes/StMegaMenuClass.php:204
/modules/stmegamenu/classes/StMegaMenuClass.php:229 (getSub)
/modules/stmegamenu/stmegamenu.php:3868 (recurseTree)
/modules/stmegamenu/stmegamenu.php:4039 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 206 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(29,20,2) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(29) AND spv.`sub_category`=0) OR ( find_in_set('88', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
1.055
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 252 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stnotification" LIMIT 1 |
1.040
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:57 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:26 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 83 |
SELECT SQL_NO_CACHE COUNT(ps.`id_product`) AS nb
FROM `ps_product_sale` ps
LEFT JOIN `ps_product` p ON p.`id_product` = ps.`id_product`
LEFT JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
WHERE product_shop.`active` = 1 LIMIT 1 |
1.020
ms
|
216 |
|
|
/classes/ProductSale.php:40
/src/Adapter/BestSales/BestSalesProductSearchProvider.php:64 (getNbSales)
/modules/ps_bestsellers/ps_bestsellers.php:195 (runQuery)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 247 |
SELECT SQL_NO_CACHE 1 FROM `ps_cart_rule` WHERE ((date_to >= "2026-08-17 00:00:00" AND date_to <= "2026-08-17 23:59:59") OR (date_from >= "2026-08-17 00:00:00" AND date_from <= "2026-08-17 23:59:59") OR (date_from < "2026-08-17 00:00:00" AND date_to > "2026-08-17 23:59:59")) AND `id_customer` IN (0,0) LIMIT 1 |
1.015
ms
|
4 |
|
|
/classes/CartRule.php:380
/classes/CartRule.php:412 (haveCartRuleToday)
/classes/Cart.php:3124 (getCustomerCartRules)
/classes/Cart.php:3443 (getDeliveryOptionList)
/classes/Cart.php:3522 (getDeliveryOption)
/src/Core/Cart/Fees.php:76 (getTotalShippingCost)
/src/Core/Cart/Calculator.php:336 (processCalculation)
/src/Core/Cart/Calculator.php:137 (calculateFees)
/classes/Cart.php:2288 (processCalculation)
/src/Adapter/Presenter/Cart/CartLazyArray.php:126 (getOrderTotal)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getTotals)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6d/24/54/6d24549f42c10e35902ece6eb5c6e98e3efca41a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c5dba08_99068185)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:334 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:58 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c597b90_02199587)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:201 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:40 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 268 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `ps_st_sidebar` snl
INNER JOIN ps_st_sidebar_shop st_sidebar_shop
ON (st_sidebar_shop.id_st_sidebar = snl.id_st_sidebar AND st_sidebar_shop.id_shop = 1)
LEFT JOIN `ps_st_sidebar_lang` snll ON (snl.`id_st_sidebar` = snll.`id_st_sidebar`)
WHERE snll.`id_lang` = 1 AND snl.`active`=1
ORDER BY snl.`location`, snl.`position` |
1.014
ms
|
5 |
Yes
|
|
/modules/stsidebar/classes/StSidebarClass.php:116
/modules/stsidebar/stsidebar.php:1326 (getAll)
/modules/stsidebar/stsidebar.php:1348 (hookDisplayMobileBar)
/classes/Hook.php:1234 (hookDisplayMobileBarLeft)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:122 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:200 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 283 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_swiper_group` smsg
INNER JOIN ps_st_swiper_group_shop st_swiper_group_shop
ON (st_swiper_group_shop.id_st_swiper_group = smsg.id_st_swiper_group AND st_swiper_group_shop.id_shop = 1)
WHERE smsg.`active`=1 AND smsg.`location` IN (21)
ORDER BY smsg.`position` |
1.013
ms
|
2 |
Yes
|
|
/modules/stswiper/classes/StSwiperGroup.php:281
/modules/stswiper/stswiper.php:2855 (getSlideGroup)
/modules/stswiper/stswiper.php:3350 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 699 |
INSERT INTO `ps_guest` (`id_operating_system`, `id_web_browser`, `id_customer`, `javascript`, `screen_resolution_x`, `screen_resolution_y`, `screen_color`, `sun_java`, `adobe_flash`, `adobe_director`, `apple_quicktime`, `real_player`, `windows_media`, `accept_language`, `mobile_theme`) VALUES ('0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '', '0') |
1.009
ms
|
1 |
|
|
/classes/ObjectModel.php:524
/classes/ObjectModel.php:469 (add)
/classes/Guest.php:236 (save)
/modules/statsdata/statsdata.php:82 (setNewGuest)
/modules/statsdata/statsdata.php:73 (getScriptPlugins)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 660 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
INNER JOIN ps_st_banner_group_shop st_banner_group_shop
ON (st_banner_group_shop.id_st_banner_group = smsg.id_st_banner_group AND st_banner_group_shop.id_shop = 1)
WHERE smsg.`active`=1 AND smsg.`id_parent`=0 AND smsg.`location` IN (3)
ORDER BY smsg.`position` |
0.991
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:315
/modules/stbanner/stbanner.php:2555 (getBannerGroup)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 705 |
INSERT INTO `ps_connections_source` (`id_connections`, `http_referer`, `request_uri`, `keywords`, `date_add`) VALUES ('844', '', 'www.calendrier-evenement.fr/', '', '2026-08-17 12:47:49') |
0.988
ms
|
1 |
|
|
/classes/ObjectModel.php:524
/classes/ConnectionsSource.php:86 (add)
/modules/statsdata/statsdata.php:119 (logHttpReferer)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 78 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stsearchbar" LIMIT 1 |
0.985
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/override/classes/controller/FrontController.php:15 (exec)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 22 |
SELECT SQL_NO_CACHE `name`, `alias` FROM `ps_hook_alias` |
0.979
ms
|
87 |
|
|
/classes/Hook.php:313
/classes/Hook.php:343 (getAllHookAliases)
/classes/Hook.php:818 (getHookAliasesFor)
/classes/Hook.php:945 (getHookModuleExecList)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 284 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_swiper` sms
LEFT JOIN `ps_st_swiper_lang` smsl ON (sms.`id_st_swiper` = smsl.`id_st_swiper`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_swiper_group`=1 AND sms.`isbanner`=0 AND sms.`active`=1
ORDER BY sms.`position` |
0.959
ms
|
4 |
Yes
|
|
/modules/stswiper/classes/StSwiperClass.php:170
/modules/stswiper/stswiper.php:2879 (getAll)
/modules/stswiper/stswiper.php:3350 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 1 |
SELECT SQL_NO_CACHE gs.*, s.*, gs.name AS group_name, s.name AS shop_name, s.active, su.domain, su.domain_ssl, su.physical_uri, su.virtual_uri
FROM ps_shop_group gs
LEFT JOIN ps_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN ps_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.950
ms
|
1 |
Yes
|
|
/classes/shop/Shop.php:696
/classes/shop/Shop.php:755 (cacheShops)
/classes/Configuration.php:280 (getShops)
/classes/shop/Shop.php:379 (getMultiShopValues)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 679 |
SELECT SQL_NO_CACHE smlg.*,smlgl.`name`,smlgl.`url`
FROM `ps_st_multi_link_group` smlg
INNER JOIN ps_st_multi_link_group_shop st_multi_link_group_shop
ON (st_multi_link_group_shop.id_st_multi_link_group = smlg.id_st_multi_link_group AND st_multi_link_group_shop.id_shop = 1)
LEFT JOIN `ps_st_multi_link_group_lang` smlgl ON (smlg.`id_st_multi_link_group` = smlgl.`id_st_multi_link_group`)
WHERE smlg.`active`=1 AND smlg.`location` IN (5,18,19,20,21,28) AND smlgl.`id_lang` = 1
ORDER BY smlg.`position` |
0.938
ms
|
5 |
Yes
|
|
/modules/stmultilink/classes/StMultiLinkGroup.php:127
/modules/stmultilink/stmultilink.php:349 (getLinkGroup)
/modules/stmultilink/stmultilink.php:713 (_prepareHook)
/modules/stmultilink/stmultilink.php:720 (hookDisplayFooter)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 36 |
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `ps_meta` m
LEFT JOIN `ps_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
0.934
ms
|
64 |
Yes
|
|
/classes/Dispatcher.php:623
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 661 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_banner` sms
LEFT JOIN `ps_st_banner_lang` smsl ON (sms.`id_st_banner` = smsl.`id_st_banner`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_banner_group`=1 AND sms.`active`=1
ORDER BY sms.`position` |
0.912
ms
|
4 |
Yes
|
|
/modules/stbanner/classes/StBannerClass.php:154
/modules/stbanner/stbanner.php:2586 (getAll)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 97 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 88 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 88 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.910
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 291 |
SELECT SQL_NO_CACHE COUNT(cp.`id_product`) AS total
FROM `ps_product` p
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_category_product` cp ON p.`id_product` = cp.`id_product`
WHERE cp.`id_category` = 2 AND product_shop.`visibility` IN ("both", "catalog") AND product_shop.`active` = 1 LIMIT 1 |
0.874
ms
|
216 |
|
|
/classes/Category.php:1001
/src/Adapter/Category/CategoryProductSearchProvider.php:81 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:99 (getProductsOrCount)
/modules/stfeaturedslider/stfeaturedslider.php:160 (runQuery)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 31 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.872
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/prestablog/prestablog.php:256 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 92 |
SELECT SQL_NO_CACHE *
FROM `ps_tax_lang`
WHERE `id_tax` = 1 |
0.863
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/tax/TaxRulesTaxManager.php:93 (__construct)
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 240 |
SELECT SQL_NO_CACHE sb.*, sbl.*
FROM `ps_prestablog_subblock` sb
JOIN `ps_prestablog_subblock_lang` sbl
ON (sb.`id_prestablog_subblock` = sbl.`id_prestablog_subblock`)
WHERE 1=1
AND sb.`hook_name` = 'displayHome'
AND sb.`id_shop` = 1
AND sb.`actif` = 1
AND sbl.`id_lang` = 1
ORDER BY sb.`position` |
0.833
ms
|
4 |
Yes
|
|
/modules/prestablog/class/subblocks.php:515
/modules/prestablog/prestablog.php:12100 (getListe)
/modules/prestablog/prestablog.php:11935 (showSubBlocks)
/classes/Hook.php:1234 (hookDisplayHome)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 52 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.831
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/sendinblue/src/Utils/ModuleTrait.php:71 (__construct)
/modules/sendinblue/sendinblue.php:160 (__mConstruct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/controller/FrontController.php:498 (exec)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 39 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.818
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/totcustomfields/vendor/totpsclasslib/src/Module/ModuleTrait.php:86 (__construct)
/modules/totcustomfields/totcustomfields.php:86 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/Loaders/EntityLoader.php:66 (exec)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Services/CustomFieldsInputService.php:53 (loadEntities)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/CustomFieldsDisplay.php:49 (__construct)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/Loaders/DisplayEntityLoader.php:47 (__construct)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/Loaders/DisplayEntityLoader.php:66 (addEntity)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/Loaders/EntityLoader.php:63 (loadDefaultEntities)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Services/CustomFieldsDisplayService.php:57 (loadEntities)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/CustomFieldsObject.php:56 (__construct)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/Loaders/ObjectEntityLoader.php:46 (__construct)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/Loaders/ObjectEntityLoader.php:65 (addEntity)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Classes/Loaders/EntityLoader.php:63 (loadDefaultEntities)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Services/CustomFieldsObjectService.php:46 (loadEntities)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/Services/CustomFieldsDisplayService.php:55 (__construct)
/modules/totcustomfields/vendor/totpsclasslib/src/Extensions/CustomFields/CustomFieldsExtension.php:188 (__construct)
/modules/totcustomfields/vendor/totpsclasslib/src/Module/ModuleTrait.php:91 (__construct)
/modules/totcustomfields/totcustomfields.php:86 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:327 (exec)
/index.php:66 (dispatch)
|
| 593 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (230) |
0.810
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 23 |
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `ps_hook` |
0.804
ms
|
1264 |
|
|
/classes/Hook.php:1565
/classes/Hook.php:244 (getAllHookIds)
/classes/Hook.php:954 (getIdByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 243 |
SELECT SQL_NO_CACHE cl.`title`, cl.`link_rewrite`, cc.`categorie`, cc.`news`
FROM `ps_prestablog_correspondancecategorie` as cc
LEFT JOIN `ps_prestablog_categorie` as c
ON (cc.`categorie` = c.`id_prestablog_categorie`)
LEFT JOIN `ps_prestablog_categorie_lang` as cl
ON (cc.`categorie` = cl.`id_prestablog_categorie`)
WHERE cc.`news` IN (27,26,25,24,23,22,21,20,19)
AND cl.`id_lang` = 1
AND c.`actif` = 1
AND EXISTS (
SELECT 1
FROM `ps_prestablog_categorie` pc
JOIN `ps_prestablog_categorie_group` pcg
ON (
pc.id_prestablog_categorie = pcg.id_prestablog_categorie
AND pcg.`id_group` IN (1)
)
WHERE cc.`categorie` = pc.`id_prestablog_categorie`
)
ORDER BY cl.`title` |
0.768
ms
|
45 |
Yes
|
|
/modules/prestablog/class/correspondancescategories.php:168
/modules/prestablog/class/news.php:1075 (getCategoriesListeNameMulti)
/modules/prestablog/prestablog.php:11995 (getListe)
/modules/prestablog/prestablog.php:12120 (returnUniversalNewsListSubBlocks)
/modules/prestablog/prestablog.php:11935 (showSubBlocks)
/classes/Hook.php:1234 (hookDisplayHome)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 12 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "sturls" LIMIT 1 |
0.764
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/override/classes/Dispatcher.php:38 (isEnabled)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 60 |
SELECT SQL_NO_CACHE format
FROM `ps_address_format`
WHERE `id_country` = 8 LIMIT 1 |
0.760
ms
|
1 |
|
|
/classes/AddressFormat.php:632
/classes/AddressFormat.php:608 (getFormatDB)
/classes/AddressFormat.php:593 (getFormat)
/classes/AddressFormat.php:540 (getAddressCountryFormat)
/classes/AddressFormat.php:416 (getOrderedAddressFields)
/classes/controller/FrontController.php:1744 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 50 |
SELECT SQL_NO_CACHE *
FROM `ps_group_lang`
WHERE `id_group` = 1 |
0.753
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Group.php:61 (__construct)
/classes/Group.php:385 (__construct)
/classes/Cart.php:262 (getCurrent)
/classes/Cart.php:226 (setTaxCalculationMethod)
/classes/controller/FrontController.php:441 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 707 |
UPDATE `ps_page_viewed`
SET `counter` = `counter` + 1
WHERE `id_date_range` = 2848
AND `id_page` = 3
AND `id_shop` = 1 |
0.753
ms
|
1 |
|
|
/classes/Page.php:111
/modules/statsdata/statsdata.php:121 (setPageViewed)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 54 |
SELECT SQL_NO_CACHE *
FROM ps_meta m
LEFT JOIN ps_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "index"
OR m.page = "index"
)
AND ml.id_lang = 1
AND ml.id_shop = 1 LIMIT 1 |
0.745
ms
|
1 |
|
|
/classes/Meta.php:170
/classes/Meta.php:301 (getMetaByPage)
/classes/Meta.php:288 (getHomeMetas)
/classes/controller/FrontController.php:1775 (getMetaTags)
/classes/controller/FrontController.php:544 (getTemplateVarPage)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 40 |
SELECT SQL_NO_CACHE * FROM ps_lgseoredirect WHERE (CONCAT("", url_old) LIKE BINARY "/" OR CONCAT("", url_old) LIKE BINARY "/#%") AND id_shop = "1" ORDER BY id DESC LIMIT 1 |
0.732
ms
|
1 |
|
|
/modules/lgseoredirect/lgseoredirect.php:875
/modules/lgseoredirect/lgseoredirect.php:817 (checkRedirection)
/classes/Hook.php:1234 (hookActionDispatcher)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/Dispatcher.php:465 (exec)
/index.php:66 (dispatch)
|
| 85 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 0 LIMIT 1 |
0.719
ms
|
1 |
|
|
/classes/SpecificPrice.php:413
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 84 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (88,43,46,96) |
0.718
ms
|
4 |
|
|
/classes/ProductAssembler.php:81
/classes/ProductAssembler.php:191 (addMissingProductFieldsForMultipleProducts)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 30 |
SELECT SQL_NO_CACHE * FROM ps_lgseoredirect WHERE (CONCAT("", url_old) LIKE BINARY "/" OR CONCAT("", url_old) LIKE BINARY "/#%") AND id_shop = "1" ORDER BY id DESC LIMIT 1 |
0.709
ms
|
1 |
|
|
/modules/lgseoredirect/lgseoredirect.php:875
/modules/lgseoredirect/lgseoredirect.php:811 (checkRedirection)
/classes/Hook.php:1234 (hookModuleRoutes)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 685 |
SELECT SQL_NO_CACHE t.name, counter AS times
FROM `ps_tag_count` pt
LEFT JOIN `ps_tag` t ON (t.id_tag = pt.id_tag)
WHERE pt.`id_group` =1
AND pt.`id_lang` = 1 AND pt.`id_shop` = 1
ORDER BY times DESC
LIMIT 6 |
0.706
ms
|
134 |
|
|
/classes/Tag.php:198
/modules/sttags/sttags.php:434 (getMainTags)
/modules/sttags/sttags.php:503 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 519 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.697
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 241 |
SELECT SQL_NO_CACHE sbc.`categorie`
FROM `ps_prestablog_subblock_categories` as sbc
LEFT JOIN `ps_prestablog_categorie` as c
ON (sbc.`categorie` = c.`id_prestablog_categorie`)
WHERE sbc.`id_prestablog_subblock` = 4
AND c.`actif` = 1
ORDER BY sbc.`categorie` |
0.693
ms
|
5 |
|
|
/modules/prestablog/class/subblocks.php:547
/modules/prestablog/class/subblocks.php:520 (getCategories)
/modules/prestablog/prestablog.php:12100 (getListe)
/modules/prestablog/prestablog.php:11935 (showSubBlocks)
/classes/Hook.php:1234 (hookDisplayHome)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 11 |
SELECT SQL_NO_CACHE domain, domain_ssl
FROM ps_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
0.671
ms
|
1 |
|
|
/classes/shop/ShopUrl.php:162
/classes/shop/ShopUrl.php:178 (cacheMainDomainForShop)
/classes/Tools.php:272 (getMainShopDomain)
/classes/Link.php:45 (getShopDomain)
/config/config.inc.php:266 (__construct)
/index.php:20 (require_once)
|
| 119 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 29) LIMIT 1 |
0.652
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 649 |
SELECT SQL_NO_CACHE secc.*
FROM `ps_st_easy_content_column` secc
WHERE secc.`id_parent`=0 AND secc.`active`=1 AND secc.`id_st_easy_content`=2 ORDER BY secc.`position` |
0.649
ms
|
2 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentColumnClass.php:138
/modules/steasycontent/classes/StEasyContentColumnClass.php:160 (getSub)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 704 |
INSERT IGNORE INTO `ps_connections_page` (`id_connections`, `id_page`, `time_start`) VALUES ('844', '3', '2026-08-17 12:47:49') |
0.644
ms
|
1 |
|
|
/classes/Connection.php:102
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 24 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.618
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/lgseoredirect/lgseoredirect.php:75 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 680 |
SELECT SQL_NO_CACHE sml.*, smll.`name`, smll.`url`
FROM `ps_st_multi_link` sml
LEFT JOIN `ps_st_multi_link_lang` smll ON (sml.`id_st_multi_link` = smll.`id_st_multi_link`)
WHERE smll.`id_lang` = 1 AND sml.`id_st_multi_link_group`=2 AND sml.`active`=1
ORDER BY sml.`position` |
0.602
ms
|
14 |
Yes
|
|
/modules/stmultilink/classes/StMultiLinkClass.php:82
/modules/stmultilink/stmultilink.php:352 (getAll)
/modules/stmultilink/stmultilink.php:713 (_prepareHook)
/modules/stmultilink/stmultilink.php:720 (hookDisplayFooter)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 248 |
SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl
ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 1) WHERE (cr.`id_customer` = 0) AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND free_shipping = 1 AND carrier_restriction = 1 |
0.601
ms
|
3 |
|
|
/classes/CartRule.php:446
/classes/Cart.php:3124 (getCustomerCartRules)
/classes/Cart.php:3443 (getDeliveryOptionList)
/classes/Cart.php:3522 (getDeliveryOption)
/src/Core/Cart/Fees.php:76 (getTotalShippingCost)
/src/Core/Cart/Calculator.php:336 (processCalculation)
/src/Core/Cart/Calculator.php:137 (calculateFees)
/classes/Cart.php:2288 (processCalculation)
/src/Adapter/Presenter/Cart/CartLazyArray.php:126 (getOrderTotal)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getTotals)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6d/24/54/6d24549f42c10e35902ece6eb5c6e98e3efca41a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c5dba08_99068185)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:334 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:58 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c597b90_02199587)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:201 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:40 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 334 |
SELECT SQL_NO_CACHE p.*, product_shop.*, pl.*, image_shop.`id_image` id_image, il.`legend`, cl.`name` AS category_default, a.quantity AS pack_quantity, product_shop.`id_category_default`, a.id_product_pack, a.id_product_attribute_item
FROM `ps_pack` a
LEFT JOIN `ps_product` p ON p.id_product = a.id_product_item
LEFT JOIN `ps_product_lang` pl
ON p.id_product = pl.id_product
AND pl.`id_lang` = 1 AND pl.id_shop = 1
LEFT JOIN `ps_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 `ps_image_lang` il ON (image_shop.`id_image` = il.`id_image` AND il.`id_lang` = 1)
INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_category_lang` cl
ON product_shop.`id_category_default` = cl.`id_category`
AND cl.`id_lang` = 1 AND cl.id_shop = 1
WHERE product_shop.`id_shop` = 1
AND a.`id_product_pack` = 228
GROUP BY a.`id_product_item`, a.`id_product_attribute_item` |
0.596
ms
|
2 |
|
Yes
|
/classes/Pack.php:367
/classes/Product.php:5596 (getItemTable)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 304 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) LEFT JOIN `ps_product_attribute_image` ai ON (i.`id_image` = ai.`id_image`) WHERE i.`id_product` = 236 AND il.`id_lang` = 1 AND ai.`id_product_attribute` = 32
ORDER BY i.`position` ASC |
0.595
ms
|
1 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 369 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 215 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 215 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.595
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 376 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.591
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 127 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 88 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.585
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 73 |
SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `ps_currency` c
LEFT JOIN ps_currency_shop cs ON (cs.id_currency = c.id_currency AND cs.id_shop = 1)
WHERE c.`active` = 1 AND c.`deleted` = 0 LIMIT 1 |
0.567
ms
|
1 |
|
|
/classes/Currency.php:1102
/classes/Currency.php:1119 (countActiveCurrencies)
/classes/module/Module.php:2348 (isMultiCurrencyActivated)
/modules/stcustomersignin/stcustomersignin.php:533 (getCacheId)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 19 |
SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `ps_lang` l
JOIN ps_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.561
ms
|
1 |
|
|
/classes/Language.php:1186
/classes/Language.php:1488 (countActiveLanguages)
/classes/Dispatcher.php:489 (isMultiLanguageActivated)
/classes/Dispatcher.php:222 (setRequestUri)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 273 |
SELECT SQL_NO_CACHE *
FROM `ps_st_mega_column`
WHERE `id_st_mega_menu`=1 AND `active`=1
ORDER BY `position` |
0.560
ms
|
3 |
Yes
|
|
/modules/stmegamenu/classes/StMegaColumnClass.php:58
/modules/stmegamenu/stmegamenu.php:3878 (getAll)
/modules/stmegamenu/stmegamenu.php:4039 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 333 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 228 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 228 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.559
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Pack.php:332 (getProductQuantity)
/classes/Product.php:4113 (getQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 190 |
SELECT SQL_NO_CACHE pa.id_product_attribute
FROM `ps_product_attribute` pa INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 88 |
0.553
ms
|
1 |
|
|
/classes/Product.php:7179
/classes/Product.php:7259 (getProductAttributesIds)
/classes/Product.php:8086 (hasCombinations)
/classes/Product.php:8071 (getDynamicProductType)
/classes/Product.php:2641 (getProductType)
/override/classes/Product.php:54 (getCombinationImages)
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 32 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.550
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/ppcleanurlslite/ppcleanurlslite.php:75 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 612 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (229) |
0.547
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 244 |
SELECT SQL_NO_CACHE n.`id_prestablog_news`, a.`firstname`, a.`lastname`, a.`pseudo`
FROM `ps_prestablog_news` n
JOIN `ps_prestablog_author` a ON a.`id_author` = n.`author_id`
WHERE n.`id_prestablog_news` IN (27,26,25,24,23,22,21,20,19) |
0.545
ms
|
9 |
|
|
/modules/prestablog/class/author.php:380
/modules/prestablog/class/news.php:1076 (getAuthorNameMulti)
/modules/prestablog/prestablog.php:11995 (getListe)
/modules/prestablog/prestablog.php:12120 (returnUniversalNewsListSubBlocks)
/modules/prestablog/prestablog.php:11935 (showSubBlocks)
/classes/Hook.php:1234 (hookDisplayHome)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 617 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 229 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 229 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.543
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 3 |
SELECT SQL_NO_CACHE value FROM `ps_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
0.539
ms
|
1 |
|
|
/classes/shop/Shop.php:1191
/classes/Configuration.php:217 (isFeatureActive)
/classes/Configuration.php:283 (get)
/classes/shop/Shop.php:379 (getMultiShopValues)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 652 |
SELECT SQL_NO_CACHE * FROM `ps_st_easy_content_setting`
WHERE id_st_easy_content_setting = 4
AND setting_type = 1 |
0.537
ms
|
1 |
|
|
/modules/steasycontent/classes/StEasyContentSettingClass.php:76
/modules/steasycontent/classes/StEasyContentColumnClass.php:170 (getSetting)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 38 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.530
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/totcustomfields/vendor/totpsclasslib/src/Module/ModuleTrait.php:86 (__construct)
/modules/totcustomfields/totcustomfields.php:86 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:327 (exec)
/index.php:66 (dispatch)
|
| 698 |
SELECT SQL_NO_CACHE data
FROM `ps_ganalytics_data`
WHERE id_cart = 0
AND id_shop = 1 LIMIT 1 |
0.527
ms
|
0 |
|
|
/modules/ps_googleanalytics/classes/Repository/GanalyticsDataRepository.php:43
/modules/ps_googleanalytics/classes/Handler/GanalyticsDataHandler.php:53 (findDataByCartIdAndShopId)
/modules/ps_googleanalytics/classes/Hook/HookDisplayBeforeBodyClosingTag.php:267 (readData)
/modules/ps_googleanalytics/classes/Hook/HookDisplayBeforeBodyClosingTag.php:54 (outputStoredEvents)
/modules/ps_googleanalytics/ps_googleanalytics.php:109 (run)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 635 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (228) |
0.525
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 297 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 236 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 236 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.518
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 533 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (236) |
0.512
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 292 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (236) |
0.511
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 114 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 88 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.510
ms
|
7 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 91 |
SELECT SQL_NO_CACHE *
FROM `ps_tax` a
WHERE (a.`id_tax` = 1) LIMIT 1 |
0.509
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/tax/TaxRulesTaxManager.php:93 (__construct)
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 700 |
SELECT SQL_NO_CACHE `id_guest`
FROM `ps_connections`
WHERE `id_guest` = 867
AND `date_add` > '2026-08-17 12:17:00'
AND id_shop IN (1)
ORDER BY `date_add` DESC LIMIT 1 |
0.507
ms
|
1 |
Yes
|
|
/classes/Connection.php:148
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 191 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 43) AND (b.`id_shop` = 1) LIMIT 1 |
0.505
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 9 |
SELECT SQL_NO_CACHE *
FROM `ps_lang` a
LEFT JOIN `ps_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 1) LIMIT 1 |
0.504
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/config/config.inc.php:200 (__construct)
/index.php:20 (require_once)
|
| 128 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 88
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.504
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 64 |
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM ps_required_field |
0.493
ms
|
1 |
|
|
/classes/ObjectModel.php:1446
/classes/ObjectModel.php:1478 (getFieldsRequiredDatabase)
/classes/ObjectModel.php:1409 (cacheFieldsRequiredDatabase)
/classes/controller/FrontController.php:549 (validateFieldsRequiredDatabase)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 703 |
INSERT INTO `ps_connections` (`id_guest`, `id_page`, `ip_address`, `http_referer`, `id_shop`, `id_shop_group`, `date_add`) VALUES ('867', '3', '3628718322', '', '1', '1', '2026-08-17 12:47:49') |
0.492
ms
|
1 |
|
|
/classes/ObjectModel.php:524
/classes/Connection.php:168 (add)
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 34 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.490
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/stblogarchives/stblogarchives.php:40 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 653 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_content_element`
WHERE `id_st_easy_content_column`=4 AND `active`=1
ORDER BY `position` ASC |
0.488
ms
|
3 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentElementClass.php:64
/modules/steasycontent/classes/StEasyContentColumnClass.php:173 (getByColumnId)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 117 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 29 LIMIT 1 |
0.484
ms
|
0 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 202 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 88
AND image_shop.`cover` = 1 LIMIT 1 |
0.484
ms
|
7 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 65 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "steasybuilder" LIMIT 1 |
0.483
ms
|
0 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/stthemeeditor/stthemeeditor.php:4249 (isInstalled)
/modules/stthemeeditor/stthemeeditor.php:4161 (isEbTransPandaInstalled)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 509 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=0) OR ( find_in_set('214', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.479
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 547 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (232) |
0.473
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 185 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 88) AND (b.`id_shop` = 1) LIMIT 1 |
0.472
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 33 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.470
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/stblog/stblog.php:89 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 14 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.469
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/sturls/sturls.php:63 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/override/classes/Dispatcher.php:39 (getInstanceByName)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 570 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (231) |
0.469
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 4 |
SELECT SQL_NO_CACHE *
FROM `ps_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
0.466
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/shop/Shop.php:126 (__construct)
/classes/shop/Shop.php:412 (__construct)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 13 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 203 AND `id_shop` = 1 LIMIT 1 |
0.466
ms
|
1 |
|
|
/classes/module/Module.php:2267
/override/classes/Dispatcher.php:38 (isEnabled)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 93 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 88 AND `id_group` = 1 LIMIT 1 |
0.461
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 37 |
SELECT SQL_NO_CACHE * FROM `ps_hook_module_exceptions`
WHERE `id_shop` IN (1) |
0.459
ms
|
1 |
|
|
/classes/module/Module.php:2168
/classes/Hook.php:1045 (getExceptionsStatic)
/classes/Dispatcher.php:677 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 686 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=1 AND sec.`location` IN (12,48,49,50,51,91,92,93,94,52,57)
ORDER BY sec.`position` LIMIT 0, 50 |
0.452
ms
|
6 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3599 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 326 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (228) |
0.451
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 708 |
SELECT SQL_NO_CACHE `id_prestablog_popup`
FROM `ps_prestablog_popup`
WHERE `actif_home` = 1 |
0.451
ms
|
1 |
|
|
/modules/prestablog/class/popup.php:379
/modules/prestablog/prestablog.php:1310 (getPopupActifHome)
/modules/prestablog/prestablog.php:1072 (isOkDisplayHome)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 53 |
SELECT SQL_NO_CACHE s.id_shop, s.id_shop_group FROM ps_shop s |
0.447
ms
|
1 |
|
|
/classes/shop/Shop.php:902
/src/Adapter/Configuration.php:363 (getGroupIdFromShopId)
/src/Adapter/Configuration.php:99 (getShopGroupId)
/src/Adapter/Assets/AssetUrlGeneratorTrait.php:48 (get)
/classes/assets/StylesheetManager.php:104 (getFQDN)
/classes/assets/StylesheetManager.php:58 (add)
/classes/controller/FrontController.php:1112 (register)
/classes/controller/FrontController.php:975 (registerStylesheet)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 418 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (213) |
0.446
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 657 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "sthomenew" AND (sec.`module_align` >30 AND sec.`module_align` <43)
ORDER BY sec.`position` LIMIT 1 |
0.444
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 35 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `ps_module` m
LEFT JOIN `ps_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.443
ms
|
153 |
|
|
/classes/module/Module.php:330
/modules/stblogsearch/stblogsearch.php:56 (__construct)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 57 |
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `suppliers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.442
ms
|
17 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1572 (getNoPictureImage)
/classes/controller/FrontController.php:1724 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 393 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (214) |
0.441
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 520 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=0) OR ( find_in_set('213', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.441
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 552 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 232 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 232 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.436
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 126 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(29))) OR (location = 1 AND (id_products LIKE "%,88,%"))) |
0.433
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 74 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "jscomposer" LIMIT 1 |
0.430
ms
|
0 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/stproductcategoriesslider/stproductcategoriesslider.php:91 (isInstalled)
/modules/stproductcategoriesslider/stproductcategoriesslider.php:83 (initHookArray)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 56 |
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `manufacturers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.429
ms
|
17 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1572 (getNoPictureImage)
/classes/controller/FrontController.php:1724 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 71 |
SELECT SQL_NO_CACHE *
FROM `ps_shop_url` a0 |
0.429
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:361
/classes/PrestaShopCollection.php:418 (getAll)
/classes/Tools.php:2086 (rewind)
/modules/sendinblue/services/ConfigService.php:284 (getDomains)
/modules/sendinblue/services/ConfigService.php:109 (getPhysicalVirtualPaths)
/modules/sendinblue/services/ConfigService.php:126 (checkMultiStoreShop)
/modules/sendinblue/sendinblue.php:280 (getSibConfig)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 646 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "sthomenew" AND sec.`module_align` = 1
ORDER BY sec.`position` LIMIT 0, 50 |
0.427
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 5 |
SELECT SQL_NO_CACHE su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM ps_shop s
LEFT JOIN ps_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.422
ms
|
1 |
|
|
/classes/shop/Shop.php:199
/classes/shop/Shop.php:129 (setUrl)
/classes/shop/Shop.php:412 (__construct)
/config/config.inc.php:103 (initialize)
/index.php:20 (require_once)
|
| 443 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (212) |
0.422
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 58 |
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.421
ms
|
17 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1572 (getNoPictureImage)
/classes/controller/FrontController.php:1724 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 516 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.421
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 498 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,13,47) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,13,47) AND spv.`sub_category`=0) OR ( find_in_set('215', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.420
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 46 |
SELECT SQL_NO_CACHE *
FROM `ps_currency` a
LEFT JOIN `ps_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.418
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Currency.php:226 (__construct)
/classes/Currency.php:1069 (__construct)
/classes/Tools.php:693 (getCurrencyInstance)
/classes/controller/FrontController.php:332 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 701 |
SELECT SQL_NO_CACHE id_page_type
FROM ps_page_type
WHERE name = 'index' LIMIT 1 |
0.418
ms
|
1 |
|
|
/classes/Page.php:84
/classes/Page.php:35 (getPageTypeByName)
/classes/Connection.php:160 (getCurrentId)
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 575 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 231 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 231 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.416
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 364 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-08-17 00:00:00',
INTERVAL 700 DAY
)
) > 0) as new
FROM ps_product p
LEFT JOIN ps_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 1
LEFT JOIN ps_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN ps_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (215) |
0.413
ms
|
1 |
|
|
/classes/ProductAssembler.php:50
/classes/ProductAssembler.php:169 (addMissingProductFields)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 42 |
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'fr-fr'
OR `language_code` = 'fr-fr' LIMIT 1 |
0.412
ms
|
1 |
|
|
/classes/Language.php:853
/src/Adapter/Currency/CurrencyDataProvider.php:92 (getIdByLocale)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:198 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 59 |
SELECT SQL_NO_CACHE * FROM `ps_image_type` WHERE 1 AND `stores` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.412
ms
|
17 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1572 (getNoPictureImage)
/classes/controller/FrontController.php:1724 (getTemplateVarUrls)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 466 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 212) AND (b.`id_shop` = 1) LIMIT 1 |
0.412
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 383 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 47 AND `id_shop` = 1 |
0.411
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 598 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 230 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 230 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.411
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 370 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 215 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.410
ms
|
5 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 103 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 43 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 43 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.408
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 590 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 231) AND (b.`id_shop` = 1) LIMIT 1 |
0.405
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 66 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "sthoverimage" LIMIT 1 |
0.402
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/stthemeeditor/stthemeeditor.php:4298 (isInstalled)
/modules/stthemeeditor/stthemeeditor.php:4178 (getStBasicVals)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 709 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `ps_st_notification` snl
INNER JOIN ps_st_notification_shop st_notification_shop
ON (st_notification_shop.id_st_notification = snl.id_st_notification AND st_notification_shop.id_shop = 1)
LEFT JOIN `ps_st_notification_lang` snll ON (snl.`id_st_notification` = snll.`id_st_notification`)
WHERE snl.`active`=1 AND snll.`id_lang` = 1
ORDER BY snl.`position` |
0.401
ms
|
1 |
Yes
|
|
/modules/stnotification/classes/StNotificationClass.php:221
/modules/stnotification/stnotification.php:1252 (getNotification)
/modules/stnotification/stnotification.php:1245 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 250 |
SELECT SQL_NO_CACHE * FROM `ps_cart_rule` cr
LEFT JOIN `ps_cart_rule_lang` crl
ON (cr.`id_cart_rule` = crl.`id_cart_rule` AND crl.`id_lang` = 1) WHERE (cr.`id_customer` = 0) AND NOW() BETWEEN cr.date_from AND cr.date_to
AND cr.`active` = 1
AND (cr.`quantity` > 0 OR cr.`quantity` is null) AND highlight = 1 AND code NOT LIKE "BO_ORDER_%" |
0.396
ms
|
1 |
|
|
/classes/CartRule.php:446
/classes/CartRule.php:601 (getCustomerCartRules)
/classes/Cart.php:541 (getCustomerHighlightedDiscounts)
/src/Adapter/Presenter/Cart/CartLazyArray.php:310 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6d/24/54/6d24549f42c10e35902ece6eb5c6e98e3efca41a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c5dba08_99068185)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:334 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:58 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c597b90_02199587)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:201 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:40 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 658 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stbanner" LIMIT 1 |
0.396
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 355 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 140) AND (b.`id_shop` = 1) LIMIT 1 |
0.395
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/classes/Pack.php:172 (__construct)
/classes/Pack.php:118 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 487 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,29,20) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,29) AND spv.`sub_category`=0) OR ( find_in_set('228', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.393
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 702 |
SELECT SQL_NO_CACHE `id_page`
FROM `ps_page`
WHERE `id_page_type` = 3 LIMIT 1 |
0.392
ms
|
1 |
|
|
/classes/Page.php:63
/classes/Connection.php:160 (getCurrentId)
/classes/Connection.php:77 (setNewConnection)
/modules/statsdata/statsdata.php:118 (setPageConnection)
/modules/statsdata/statsdata.php:74 (getScriptCustomerPagesViews)
/classes/Hook.php:1234 (hookDisplayBeforeBodyClosingTag)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:633 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:182 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 472 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 236
AND image_shop.`cover` = 1 LIMIT 1 |
0.392
ms
|
1 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 194 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 46) AND (b.`id_shop` = 1) LIMIT 1 |
0.390
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 197 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 96) AND (b.`id_shop` = 1) LIMIT 1 |
0.390
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 8 |
SELECT SQL_NO_CACHE *
FROM `ps_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
0.387
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/shop/Shop.php:542 (__construct)
/config/config.inc.php:160 (getGroup)
/index.php:20 (require_once)
|
| 330 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 228) LIMIT 1 |
0.385
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/classes/Pack.php:268 (__construct)
/classes/Product.php:4113 (getQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 312 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.383
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 600 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 230) LIMIT 1 |
0.382
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 562 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 71 AND c.`nright` >= 72 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.381
ms
|
18 |
Yes
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 488 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 215
AND image_shop.`cover` = 1 LIMIT 1 |
0.380
ms
|
5 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 46 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 46 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.377
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 611 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 230
ORDER BY `position` |
0.377
ms
|
6 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 632 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 229) AND (b.`id_shop` = 1) LIMIT 1 |
0.377
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 115 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 88) LIMIT 1 |
0.376
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 152 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 46) LIMIT 1 |
0.375
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 490 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.374
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 276 |
SELECT SQL_NO_CACHE smm.*,smml.`html`,smml.`title`,smml.`link`,smml.`cate_label`
FROM `ps_st_mega_menu` smm
LEFT JOIN `ps_st_mega_menu_lang` smml ON smm.`id_st_mega_menu`=smml.`id_st_mega_menu`
WHERE smml.`id_lang`=1 AND smm.`id_st_mega_column`=1 AND smm.`id_parent`=0 AND smm.`item_t`>0 AND smm.`active`=1 AND smm.id_shop = 1
ORDER BY smm.`position` |
0.372
ms
|
5 |
Yes
|
|
/modules/stmegamenu/classes/StMegaMenuClass.php:219
/modules/stmegamenu/stmegamenu.php:3893 (getByColumnId)
/modules/stmegamenu/stmegamenu.php:4039 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 361 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 140 LIMIT 1 |
0.372
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:3914 (getPriceStatic)
/classes/Pack.php:120 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 610 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 230) AND (b.`id_shop` = 1) LIMIT 1 |
0.371
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 98 |
SELECT SQL_NO_CACHE tr.*
FROM `ps_tax_rule` tr
JOIN `ps_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 |
0.371
ms
|
1 |
Yes
|
|
/classes/tax/TaxRulesTaxManager.php:86
/classes/Product.php:5714 (getTaxCalculator)
/classes/Product.php:5606 (getTaxesInformations)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 486 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.371
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 500 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.371
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 511 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.370
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 43 |
SELECT SQL_NO_CACHE c.id_currency
FROM `ps_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 |
0.369
ms
|
1 |
|
|
/classes/Currency.php:873
/src/Adapter/Currency/CurrencyDataProvider.php:72 (getIdByIsoCode)
/src/Adapter/Currency/CurrencyDataProvider.php:94 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:198 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 615 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 229 AND `id_group` = 1 LIMIT 1 |
0.369
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 513 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.367
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 655 |
SELECT SQL_NO_CACHE * FROM `ps_st_easy_content_setting`
WHERE id_st_easy_content_setting = 5
AND setting_type = 2 |
0.367
ms
|
51 |
|
|
/modules/steasycontent/classes/StEasyContentSettingClass.php:76
/modules/steasycontent/classes/StEasyContentColumnClass.php:175 (getSetting)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 45 |
SELECT SQL_NO_CACHE `id_lang` FROM `ps_lang`
WHERE `locale` = 'fr-fr'
OR `language_code` = 'fr-fr' LIMIT 1 |
0.366
ms
|
1 |
|
|
/classes/Language.php:853
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:94 (getIdByLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:198 (getLocale)
/classes/controller/FrontController.php:223 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 398 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 214 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 214 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.366
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 69 |
SELECT SQL_NO_CACHE `width`, `height`
FROM ps_image_type
WHERE `name` = 'brand_default' LIMIT 1 |
0.365
ms
|
1 |
|
|
/classes/Image.php:536
/modules/stthemeeditor/stthemeeditor.php:4300 (getSize)
/modules/stthemeeditor/stthemeeditor.php:4178 (getStBasicVals)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 299 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 32
AND cp.`id_cart` = 0 AND cp.`id_product` = 236 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 32
AND cp.`id_cart` = 0 AND p.`id_product_item` = 236 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.365
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5585 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 479 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,61) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,61) AND spv.`sub_category`=0) OR ( find_in_set('236', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.365
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 694 |
SELECT SQL_NO_CACHE snl.*, snll.*
FROM `ps_st_sidebar` snl
INNER JOIN ps_st_sidebar_shop st_sidebar_shop
ON (st_sidebar_shop.id_st_sidebar = snl.id_st_sidebar AND st_sidebar_shop.id_shop = 1)
LEFT JOIN `ps_st_sidebar_lang` snll ON (snl.`id_st_sidebar` = snll.`id_st_sidebar`)
WHERE snll.`id_lang` = 1 AND snl.`active`=1
ORDER BY snl.`location`, snl.`position` |
0.365
ms
|
5 |
Yes
|
|
/modules/stsidebar/classes/StSidebarClass.php:116
/modules/stsidebar/stsidebar.php:1372 (getAll)
/classes/Hook.php:1234 (hookDisplaySideBar)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:531 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 68 |
SELECT SQL_NO_CACHE * FROM `ps_image_type` |
0.364
ms
|
17 |
|
|
/classes/ImageType.php:141
/classes/ImageType.php:182 (getByNameNType)
/modules/stthemeeditor/stthemeeditor.php:4300 (getFormattedName)
/modules/stthemeeditor/stthemeeditor.php:4178 (getStBasicVals)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 131 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 43) LIMIT 1 |
0.364
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 567 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 232) AND (b.`id_shop` = 1) LIMIT 1 |
0.362
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 531 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,13,47) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,13,47) AND spv.`sub_category`=0) OR ( find_in_set('212', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.362
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 129 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 88
ORDER BY `position` |
0.361
ms
|
7 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 322 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 236) AND (b.`id_shop` = 1) LIMIT 1 |
0.361
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 386 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 8 AND c.`nright` >= 9 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.361
ms
|
5 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 502 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.360
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 415 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 214
ORDER BY `position` |
0.359
ms
|
7 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 441 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 213) AND (b.`id_shop` = 1) LIMIT 1 |
0.358
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 480 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 228
AND image_shop.`cover` = 1 LIMIT 1 |
0.358
ms
|
9 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 285 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "steasycontent" LIMIT 1 |
0.355
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 350 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 228) AND (b.`id_shop` = 1) LIMIT 1 |
0.355
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 494 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 3 AND c.`nright` >= 10 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.355
ms
|
2 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 505 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.355
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 470 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "stfeaturedslider" AND (sec.`module_align` >10 AND sec.`module_align` <23)
ORDER BY sec.`position` LIMIT 1 |
0.355
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 554 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 232) LIMIT 1 |
0.353
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 125 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.352
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 666 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
WHERE smsg.`id_parent`=5 AND smsg.`active`=1 ORDER BY smsg.`position` |
0.352
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:180
/modules/stbanner/classes/StBannerGroup.php:185 (getSub)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/stbanner.php:2596 (recurseTree)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 682 |
SELECT SQL_NO_CACHE sml.*, smll.`name`, smll.`url`
FROM `ps_st_multi_link` sml
LEFT JOIN `ps_st_multi_link_lang` smll ON (sml.`id_st_multi_link` = smll.`id_st_multi_link`)
WHERE smll.`id_lang` = 1 AND sml.`id_st_multi_link_group`=4 AND sml.`active`=1
ORDER BY sml.`position` |
0.351
ms
|
14 |
Yes
|
|
/modules/stmultilink/classes/StMultiLinkClass.php:82
/modules/stmultilink/stmultilink.php:352 (getAll)
/modules/stmultilink/stmultilink.php:713 (_prepareHook)
/modules/stmultilink/stmultilink.php:720 (hookDisplayFooter)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 15 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stsitebuilder" LIMIT 1 |
0.351
ms
|
0 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/sturls/sturls.php:1506 (isInstalled)
/modules/sturls/sturls.php:161 (isSitebuilderAvailable)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/override/classes/Dispatcher.php:39 (getInstanceByName)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 592 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 231
ORDER BY `position` |
0.350
ms
|
6 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 619 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 229) LIMIT 1 |
0.350
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 205 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.349
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 491 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.349
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 424 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 213 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.349
ms
|
6 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 469 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "stfeaturedslider" AND sec.`module_align` = 2
ORDER BY sec.`position` LIMIT 0, 50 |
0.349
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 645 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 228
ORDER BY `position` |
0.348
ms
|
9 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 471 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "stfeaturedslider" AND (sec.`module_align` >30 AND sec.`module_align` <43)
ORDER BY sec.`position` LIMIT 1 |
0.348
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 423 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 213 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 213 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.347
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 391 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 215) AND (b.`id_shop` = 1) LIMIT 1 |
0.346
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 521 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 212
AND image_shop.`cover` = 1 LIMIT 1 |
0.346
ms
|
4 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 51 |
SELECT SQL_NO_CACHE id_shop
FROM `ps_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
0.346
ms
|
1 |
|
|
/classes/ObjectModel.php:1581
/classes/Group.php:388 (isAssociatedToShop)
/classes/Cart.php:262 (getCurrent)
/classes/Cart.php:226 (setTaxCalculationMethod)
/classes/controller/FrontController.php:441 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 271 |
SELECT SQL_NO_CACHE SUM(`quantity`)
FROM `ps_cart_product`
WHERE `id_cart` = 0 LIMIT 1 |
0.345
ms
|
1 |
|
|
/classes/Cart.php:1392
/src/Adapter/Presenter/Cart/CartLazyArray.php:235 (getNbProducts)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getProductsCount)
/var/cache/dev/smarty/compile/panda/52/33/2e/52332e14d92f82d3c12217bc32b7318ae730bb0c_2.module.stshoppingcartviewstemplateshookstshoppingcart.tpl.php:33 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c2c01b4_41941928)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stshoppingcart/stshoppingcart.php:754 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:299 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:38 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 641 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.345
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 648 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "sthomenew" AND (sec.`module_align` >10 AND sec.`module_align` <23)
ORDER BY sec.`position` LIMIT 1 |
0.345
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 363 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 140 AND `id_group` = 1 LIMIT 1 |
0.344
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:3914 (getPriceStatic)
/classes/Pack.php:120 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 217 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=0) OR ( find_in_set('43', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.343
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 497 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 8 AND c.`nright` >= 9 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.343
ms
|
5 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 169 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 96) LIMIT 1 |
0.342
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 448 |
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 `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 212 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 212 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.342
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 642 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,29))) OR (location = 1 AND (id_products LIKE "%,228,%"))) |
0.341
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 113 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `ps_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 96 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `ps_cart_product` cp JOIN `ps_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `ps_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` = 96 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.340
ms
|
0 |
|
|
/classes/Cart.php:1625
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 308 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 2 LIMIT 1 |
0.340
ms
|
0 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 306 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 236) LIMIT 1 |
0.339
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 417 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 214
ORDER BY `position` |
0.338
ms
|
7 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 325 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `ps_product_attribute_image` pai
LEFT JOIN `ps_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `ps_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 236 AND il.`id_lang` = 1 ORDER by i.`position` |
0.338
ms
|
1 |
Yes
|
|
/classes/Product.php:2650
/override/classes/Product.php:54 (getCombinationImages)
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 483 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.337
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 239 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=0) OR ( find_in_set('96', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.337
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 47 |
SELECT SQL_NO_CACHE *
FROM `ps_currency_lang`
WHERE `id_currency` = 1 |
0.336
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Currency.php:226 (__construct)
/classes/Currency.php:1069 (__construct)
/classes/Tools.php:693 (getCurrencyInstance)
/classes/controller/FrontController.php:332 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 67 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 182 AND `id_shop` = 1 LIMIT 1 |
0.336
ms
|
1 |
|
|
/classes/module/Module.php:2267
/modules/stthemeeditor/stthemeeditor.php:4298 (isEnabled)
/modules/stthemeeditor/stthemeeditor.php:4178 (getStBasicVals)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 281 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stswiper" LIMIT 1 |
0.336
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 390 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 215
ORDER BY `position` |
0.336
ms
|
5 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 210 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.334
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 260 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stcustomersignin" LIMIT 1 |
0.334
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 478 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 101 AND c.`nright` >= 102 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.334
ms
|
2 |
Yes
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 499 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 214
AND image_shop.`cover` = 1 LIMIT 1 |
0.334
ms
|
7 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 510 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 213
AND image_shop.`cover` = 1 LIMIT 1 |
0.334
ms
|
6 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 683 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "sttags" LIMIT 1 |
0.334
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 647 |
SELECT SQL_NO_CACHE sec.*, secl.*, st_easy_content_shop.`id_shop`
FROM `ps_st_easy_content` sec
INNER JOIN ps_st_easy_content_shop st_easy_content_shop
ON (st_easy_content_shop.id_st_easy_content = sec.id_st_easy_content AND st_easy_content_shop.id_shop = 1)
LEFT JOIN `ps_st_easy_content_lang` secl ON (sec.`id_st_easy_content` = secl.`id_st_easy_content`)
WHERE secl.`id_lang` = 1 AND sec.`active`=1 AND sec.`type`=2 AND sec.`module` = "sthomenew" AND sec.`module_align` = 2
ORDER BY sec.`position` LIMIT 0, 50 |
0.333
ms
|
1 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentClass.php:352
/modules/steasycontent/steasycontent.php:2627 (getListContent)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 614 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 229) |
0.333
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 634 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 229
ORDER BY `position` |
0.333
ms
|
6 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 216 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.332
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 277 |
SELECT SQL_NO_CACHE smm.*,smml.`html`,smml.`title`,smml.`link`,smml.`cate_label`
FROM `ps_st_mega_menu` smm
LEFT JOIN `ps_st_mega_menu_lang` smml ON smm.`id_st_mega_menu`=smml.`id_st_mega_menu`
WHERE smml.`id_lang`=1 AND smm.`id_st_mega_column`=2 AND smm.`id_parent`=0 AND smm.`item_t`>0 AND smm.`active`=1 AND smm.id_shop = 1
ORDER BY smm.`position` |
0.332
ms
|
5 |
Yes
|
|
/modules/stmegamenu/classes/StMegaMenuClass.php:219
/modules/stmegamenu/stmegamenu.php:3893 (getByColumnId)
/modules/stmegamenu/stmegamenu.php:4039 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 425 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 213) LIMIT 1 |
0.332
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 405 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.331
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 70 |
SELECT SQL_NO_CACHE `width`, `height`
FROM ps_image_type
WHERE `name` = 'home_default' LIMIT 1 |
0.331
ms
|
1 |
|
|
/classes/Image.php:536
/modules/stthemeeditor/stthemeeditor.php:4301 (getSize)
/modules/stthemeeditor/stthemeeditor.php:4178 (getStBasicVals)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 249 |
SELECT SQL_NO_CACHE 1 FROM `ps_cart_rule` WHERE ((date_to >= "2026-08-17 00:00:00" AND date_to <= "2026-08-17 23:59:59") OR (date_from >= "2026-08-17 00:00:00" AND date_from <= "2026-08-17 23:59:59") OR (date_from < "2026-08-17 00:00:00" AND date_to > "2026-08-17 23:59:59")) AND `id_customer` IN (0,0) LIMIT 1 |
0.331
ms
|
4 |
|
|
/classes/CartRule.php:380
/classes/CartRule.php:412 (haveCartRuleToday)
/classes/CartRule.php:601 (getCustomerCartRules)
/classes/Cart.php:541 (getCustomerHighlightedDiscounts)
/src/Adapter/Presenter/Cart/CartLazyArray.php:310 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getDiscounts)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6d/24/54/6d24549f42c10e35902ece6eb5c6e98e3efca41a_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c5dba08_99068185)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:334 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/71/30/9c/71309cf548f454d35f88f16a1c6764e43a2c2f64_2.file.head.tpl.php:58 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c597b90_02199587)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:201 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:40 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 331 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 228 AND `id_shop` = 1 |
0.331
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/classes/Pack.php:268 (__construct)
/classes/Product.php:4113 (getQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 628 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(45))) OR (location = 1 AND (id_products LIKE "%,229,%"))) |
0.330
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 450 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 212) LIMIT 1 |
0.328
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 475 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.328
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 416 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 1
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 214) AND (b.`id_shop` = 1) LIMIT 1 |
0.328
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 116 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 88 AND `id_shop` = 1 |
0.327
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 362 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 140) |
0.327
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:3914 (getPriceStatic)
/classes/Pack.php:120 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 541 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 101 AND c.`nright` >= 102 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.326
ms
|
2 |
Yes
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 200 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "productcomments" LIMIT 1 |
0.325
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 522 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.325
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 161 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.324
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 616 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 229) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.324
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 138 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.323
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 695 |
SELECT SQL_NO_CACHE *
FROM `ps_currency` c
INNER JOIN ps_currency_shop currency_shop
ON (currency_shop.id_currency = c.id_currency AND currency_shop.id_shop = 1)
WHERE c.`deleted` = 0 AND c.`active` = 1 ORDER BY `iso_code` ASC |
0.323
ms
|
1 |
Yes
|
|
/classes/Currency.php:674
/classes/Currency.php:649 (findAll)
/modules/stcurrencyselector/stcurrencyselector.php:436 (getCurrencies)
/modules/stcurrencyselector/stcurrencyselector.php:384 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/f5/b0/57/f5b0572dbf09cbea15f05c9a207c164e666d1a4f_2.module.stsidebarviewstemplateshookstsidebar.tpl.php:56 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d1c4f39_44130266)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stsidebar/stsidebar.php:1380 (fetch)
/classes/Hook.php:1234 (hookDisplaySideBar)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:531 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 508 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.322
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 213 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.321
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 534 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) LEFT JOIN `ps_product_attribute_image` ai ON (i.`id_image` = ai.`id_image`) WHERE i.`id_product` = 236 AND il.`id_lang` = 1 AND ai.`id_product_attribute` = 32
ORDER BY i.`position` ASC |
0.321
ms
|
1 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 184 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 96
ORDER BY `position` |
0.321
ms
|
7 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 207 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 43
AND image_shop.`cover` = 1 LIMIT 1 |
0.321
ms
|
3 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 360 |
SELECT SQL_NO_CACHE product_attribute_shop.id_product_attribute
FROM ps_product_attribute pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.id_product = 140 LIMIT 1 |
0.321
ms
|
1 |
|
|
/classes/Product.php:1054
/classes/Product.php:3563 (getDefaultAttribute)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:3914 (getPriceStatic)
/classes/Pack.php:120 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 228 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_video` spv
INNER JOIN `ps_st_easy_video_yuyan` yy ON yy.id_st_easy_video = spv.id_st_easy_video
INNER JOIN ps_st_easy_video_shop st_easy_video_shop
ON (st_easy_video_shop.id_st_easy_video = spv.id_st_easy_video AND st_easy_video_shop.id_shop = 1)
WHERE spv.`active`=1 AND (0 OR (spv.`id_manufacturer` > 0 AND spv.`id_manufacturer`=2) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=1) OR (spv.`id_category` > 0 AND spv.`id_category` IN(2,20,29) AND spv.`sub_category`=0) OR ( find_in_set('46', spv.`id_product`))) AND spv.`location` IN (0,3) AND ( yy.`id_lang` = 0 OR yy.`id_lang` = 1)
ORDER BY spv.`position` desc LIMIT 1 |
0.320
ms
|
1 |
Yes
|
|
/modules/steasyvideo/classes/StEasyVideoClass.php:112
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 400 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 214) LIMIT 1 |
0.320
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 461 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 8 AND c.`nright` >= 9 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.320
ms
|
5 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 577 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 231) LIMIT 1 |
0.320
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 595 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 230) |
0.320
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 261 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 150 AND `id_shop` = 1 LIMIT 1 |
0.319
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 381 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 3 AND c.`nright` >= 10 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.319
ms
|
2 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 413 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 214 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.318
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 669 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_banner` sms
LEFT JOIN `ps_st_banner_lang` smsl ON (sms.`id_st_banner` = smsl.`id_st_banner`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_banner_group`=2 AND sms.`active`=1
ORDER BY sms.`position` |
0.318
ms
|
4 |
Yes
|
|
/modules/stbanner/classes/StBannerClass.php:154
/modules/stbanner/stbanner.php:2646 (getAll)
/modules/stbanner/stbanner.php:2597 (_recurseBanners)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 10 |
SELECT SQL_NO_CACHE id_shop
FROM `ps_lang_shop`
WHERE `id_lang` = 1
AND id_shop = 1 LIMIT 1 |
0.317
ms
|
1 |
|
|
/classes/ObjectModel.php:1581
/config/config.inc.php:205 (isAssociatedToShop)
/index.php:20 (require_once)
|
| 100 |
SELECT SQL_NO_CACHE product_shop.`price`, product_shop.`ecotax`,
IFNULL(product_attribute_shop.id_product_attribute,0) id_product_attribute, product_attribute_shop.`price` AS attribute_price, product_attribute_shop.default_on, product_attribute_shop.`ecotax` AS attribute_ecotax
FROM `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 43) |
0.317
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 27 |
SELECT SQL_NO_CACHE name, alias FROM `ps_hook_alias` |
0.316
ms
|
87 |
|
|
/classes/Hook.php:365
/classes/Hook.php:151 (getCanonicalHookNames)
/classes/Hook.php:391 (normalizeHookName)
/classes/Hook.php:413 (getAllKnownNames)
/classes/Hook.php:1116 (isHookCallableOn)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 530 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 8 AND c.`nright` >= 9 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.316
ms
|
5 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 146 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.316
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 371 |
SELECT SQL_NO_CACHE *
FROM `ps_product` a
LEFT JOIN `ps_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 215) LIMIT 1 |
0.316
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 618 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 229 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.316
ms
|
6 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 673 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_banner` sms
LEFT JOIN `ps_st_banner_lang` smsl ON (sms.`id_st_banner` = smsl.`id_st_banner`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_banner_group`=6 AND sms.`active`=1
ORDER BY sms.`position` |
0.316
ms
|
4 |
Yes
|
|
/modules/stbanner/classes/StBannerClass.php:154
/modules/stbanner/stbanner.php:2646 (getAll)
/modules/stbanner/stbanner.php:2657 (_recurseBanners)
/modules/stbanner/stbanner.php:2657 (_recurseBanners)
/modules/stbanner/stbanner.php:2597 (_recurseBanners)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 16 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stblog" LIMIT 1 |
0.315
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/modules/sturls/sturls.php:167 (isEnabled)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/override/classes/Dispatcher.php:39 (getInstanceByName)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 379 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 13 LIMIT 1 |
0.315
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 465 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 212
ORDER BY `position` |
0.315
ms
|
4 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 599 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 230 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.314
ms
|
6 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 338 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 228 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.313
ms
|
9 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 467 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 212
ORDER BY `position` |
0.313
ms
|
4 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 503 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.313
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 576 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 231 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.313
ms
|
6 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 627 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 4 AND c.`nright` >= 5 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.313
ms
|
3 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 278 |
SELECT SQL_NO_CACHE smm.*,smml.`html`,smml.`title`,smml.`link`,smml.`cate_label`
FROM `ps_st_mega_menu` smm
LEFT JOIN `ps_st_mega_menu_lang` smml ON smm.`id_st_mega_menu`=smml.`id_st_mega_menu`
WHERE smml.`id_lang`=1 AND smm.`id_st_mega_column`=3 AND smm.`id_parent`=0 AND smm.`item_t`>0 AND smm.`active`=1 AND smm.id_shop = 1
ORDER BY smm.`position` |
0.313
ms
|
5 |
Yes
|
|
/modules/stmegamenu/classes/StMegaMenuClass.php:219
/modules/stmegamenu/stmegamenu.php:3893 (getByColumnId)
/modules/stmegamenu/stmegamenu.php:4039 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 72 |
SELECT SQL_NO_CACHE *
FROM `ps_shop_url` a0 |
0.312
ms
|
1 |
|
|
/classes/PrestaShopCollection.php:361
/classes/PrestaShopCollection.php:418 (getAll)
/classes/Tools.php:2086 (rewind)
/modules/sendinblue/services/ConfigService.php:284 (getDomains)
/modules/sendinblue/services/ConfigService.php:109 (getPhysicalVirtualPaths)
/modules/sendinblue/services/ConfigService.php:126 (checkMultiStoreShop)
/modules/sendinblue/sendinblue.php:285 (getSibConfig)
/classes/Hook.php:1234 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/controller/FrontController.php:627 (exec)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 163 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.312
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 345 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.312
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 192 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 43
ORDER BY `position` |
0.312
ms
|
3 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 638 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.312
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 672 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_banner` sms
LEFT JOIN `ps_st_banner_lang` smsl ON (sms.`id_st_banner` = smsl.`id_st_banner`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_banner_group`=5 AND sms.`active`=1
ORDER BY sms.`position` |
0.312
ms
|
4 |
Yes
|
|
/modules/stbanner/classes/StBannerClass.php:154
/modules/stbanner/stbanner.php:2646 (getAll)
/modules/stbanner/stbanner.php:2657 (_recurseBanners)
/modules/stbanner/stbanner.php:2597 (_recurseBanners)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 356 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 140) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.311
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:7537 (getQuantityAvailableByProduct)
/classes/Pack.php:173 (loadStockData)
/classes/Pack.php:118 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 287 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "gformbuilderpro" LIMIT 1 |
0.309
ms
|
0 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/modules/steasycontent/steasycontent.php:4246 (isEnabled)
/modules/steasycontent/steasycontent.php:4240 (renderShortcode)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 585 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 36 AND c.`nright` >= 37 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.309
ms
|
19 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 245 |
SELECT SQL_NO_CACHE *
FROM `ps_prestablog_subblock` a
WHERE (a.`id_prestablog_subblock` = 4) LIMIT 1 |
0.308
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/modules/prestablog/class/subblocks.php:75 (__construct)
/modules/prestablog/prestablog.php:12127 (__construct)
/modules/prestablog/prestablog.php:11935 (showSubBlocks)
/classes/Hook.php:1234 (hookDisplayHome)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 25 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "pagesnotfound" LIMIT 1 |
0.307
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/lgseoredirect/lgseoredirect.php:101 (isInstalled)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 313 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 61) LIMIT 1 |
0.307
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 489 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.307
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 18 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "smartblog" LIMIT 1 |
0.306
ms
|
0 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/sturls/sturls.php:1323 (isInstalled)
/override/classes/Dispatcher.php:40 (hookModuleRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 121 |
SELECT SQL_NO_CACHE DISTINCT c.*
FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = 1)
WHERE `level_depth` = 1 |
0.306
ms
|
1 |
|
|
/classes/Category.php:2230
/classes/Category.php:1125 (getCategoriesWithoutParent)
/classes/Category.php:1577 (getRootCategory)
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 130 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 43 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.306
ms
|
3 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 339 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 228 |
0.306
ms
|
2 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 105 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 46) |
0.306
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 257 |
SELECT SQL_NO_CACHE *
FROM `ps_currency` c
INNER JOIN ps_currency_shop currency_shop
ON (currency_shop.id_currency = c.id_currency AND currency_shop.id_shop = 1)
WHERE c.`deleted` = 0 AND c.`active` = 1 ORDER BY `iso_code` ASC |
0.306
ms
|
1 |
Yes
|
|
/classes/Currency.php:674
/classes/Currency.php:649 (findAll)
/modules/stcurrencyselector/stcurrencyselector.php:436 (getCurrencies)
/modules/stcurrencyselector/stcurrencyselector.php:384 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 195 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 46
ORDER BY `position` |
0.305
ms
|
3 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 527 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 3 AND c.`nright` >= 10 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.305
ms
|
2 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 122 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 1
LEFT JOIN `ps_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.305
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/classes/Category.php:1129 (__construct)
/classes/Category.php:1577 (getRootCategory)
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 674 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_banner` sms
LEFT JOIN `ps_st_banner_lang` smsl ON (sms.`id_st_banner` = smsl.`id_st_banner`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_banner_group`=7 AND sms.`active`=1
ORDER BY sms.`position` |
0.305
ms
|
4 |
Yes
|
|
/modules/stbanner/classes/StBannerClass.php:154
/modules/stbanner/stbanner.php:2646 (getAll)
/modules/stbanner/stbanner.php:2657 (_recurseBanners)
/modules/stbanner/stbanner.php:2657 (_recurseBanners)
/modules/stbanner/stbanner.php:2597 (_recurseBanners)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 17 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 164 AND `id_shop` = 1 LIMIT 1 |
0.304
ms
|
1 |
|
|
/classes/module/Module.php:2267
/modules/sturls/sturls.php:167 (isEnabled)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/override/classes/Dispatcher.php:39 (getInstanceByName)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 143 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.304
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 262 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stwishlist" LIMIT 1 |
0.304
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/stcustomersignin/stcustomersignin.php:577 (isInstalled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 349 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 228
ORDER BY `position` |
0.304
ms
|
9 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 430 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.304
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 566 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 232
ORDER BY `position` |
0.304
ms
|
5 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 597 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 230) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.304
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 335 |
SELECT SQL_NO_CACHE `id_tax_rules_group`
FROM `ps_product_shop`
WHERE `id_product` = 140 AND id_shop=1 LIMIT 1 |
0.303
ms
|
1 |
|
|
/classes/Product.php:6554
/classes/Product.php:5713 (getIdTaxRulesGroupByIdProduct)
/classes/Pack.php:400 (getTaxesInformations)
/classes/Product.php:5596 (getItemTable)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 422 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 213) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.303
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 48 |
SELECT SQL_NO_CACHE id_shop
FROM `ps_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 1 LIMIT 1 |
0.302
ms
|
1 |
|
|
/classes/ObjectModel.php:1581
/classes/Tools.php:697 (isAssociatedToShop)
/classes/controller/FrontController.php:332 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 572 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 231) |
0.301
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 295 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 236 AND `id_group` = 1 LIMIT 1 |
0.301
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 493 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.300
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 631 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 229
ORDER BY `position` |
0.300
ms
|
6 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 507 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.299
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 664 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
WHERE smsg.`id_parent`=3 AND smsg.`active`=1 ORDER BY smsg.`position` |
0.299
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:180
/modules/stbanner/classes/StBannerGroup.php:185 (getSub)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/stbanner.php:2596 (recurseTree)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 589 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 231
ORDER BY `position` |
0.298
ms
|
6 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 151 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 46 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.297
ms
|
3 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 157 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.297
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 524 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.297
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 187 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 88
ORDER BY `position` |
0.296
ms
|
7 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 353 |
SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 46) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.296
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:558
/classes/Product.php:7538 (outOfStock)
/classes/Pack.php:173 (loadStockData)
/classes/Pack.php:118 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 218 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 46
AND image_shop.`cover` = 1 LIMIT 1 |
0.296
ms
|
3 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 227 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.295
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 327 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 228 LIMIT 1 |
0.295
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 440 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 213
ORDER BY `position` |
0.295
ms
|
6 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 603 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 23 LIMIT 1 |
0.295
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 681 |
SELECT SQL_NO_CACHE sml.*, smll.`name`, smll.`url`
FROM `ps_st_multi_link` sml
LEFT JOIN `ps_st_multi_link_lang` smll ON (sml.`id_st_multi_link` = smll.`id_st_multi_link`)
WHERE smll.`id_lang` = 1 AND sml.`id_st_multi_link_group`=3 AND sml.`active`=1
ORDER BY sml.`position` |
0.295
ms
|
14 |
Yes
|
|
/modules/stmultilink/classes/StMultiLinkClass.php:82
/modules/stmultilink/stmultilink.php:352 (getAll)
/modules/stmultilink/stmultilink.php:713 (_prepareHook)
/modules/stmultilink/stmultilink.php:720 (hookDisplayFooter)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 150 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 43
ORDER BY `position` |
0.294
ms
|
3 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 110 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 96) |
0.293
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 174 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.293
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 177 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.293
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 332 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 228) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.293
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Pack.php:302 (getQuantityAvailableByProduct)
/classes/Product.php:4113 (getQuantity)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 671 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_banner` sms
LEFT JOIN `ps_st_banner_lang` smsl ON (sms.`id_st_banner` = smsl.`id_st_banner`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_banner_group`=4 AND sms.`active`=1
ORDER BY sms.`position` |
0.293
ms
|
4 |
Yes
|
|
/modules/stbanner/classes/StBannerClass.php:154
/modules/stbanner/stbanner.php:2646 (getAll)
/modules/stbanner/stbanner.php:2657 (_recurseBanners)
/modules/stbanner/stbanner.php:2597 (_recurseBanners)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 294 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 236) |
0.292
ms
|
3 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 186 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 29 LIMIT 1 |
0.291
ms
|
1 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 109 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 96 LIMIT 1 |
0.291
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 392 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 215
ORDER BY `position` |
0.291
ms
|
5 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 662 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
WHERE smsg.`id_parent`=1 AND smsg.`active`=1 ORDER BY smsg.`position` |
0.290
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:180
/modules/stbanner/classes/StBannerGroup.php:185 (getSub)
/modules/stbanner/stbanner.php:2596 (recurseTree)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 317 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 101 AND c.`nright` >= 102 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.290
ms
|
2 |
Yes
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 406 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.290
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 690 |
SELECT SQL_NO_CACHE * FROM `ps_st_easy_content_setting`
WHERE id_st_easy_content_setting = 6
AND setting_type = 1 |
0.290
ms
|
1 |
|
|
/modules/steasycontent/classes/StEasyContentSettingClass.php:76
/modules/steasycontent/classes/StEasyContentColumnClass.php:170 (getSetting)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3599 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 180 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.289
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 481 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.289
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 196 |
SELECT SQL_NO_CACHE pa.id_product_attribute
FROM `ps_product_attribute` pa INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 46 |
0.288
ms
|
1 |
|
|
/classes/Product.php:7179
/classes/Product.php:7259 (getProductAttributesIds)
/classes/Product.php:8086 (hasCombinations)
/classes/Product.php:8071 (getDynamicProductType)
/classes/Product.php:2641 (getProductType)
/override/classes/Product.php:54 (getCombinationImages)
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 670 |
SELECT SQL_NO_CACHE sms.*, smsl.*
,IF(image_multi_lang<>"" && !ISNULL(image_multi_lang), image_multi_lang, image_lang_default) AS image_multi_lang
FROM `ps_st_banner` sms
LEFT JOIN `ps_st_banner_lang` smsl ON (sms.`id_st_banner` = smsl.`id_st_banner`)
WHERE smsl.`id_lang` = 1 AND sms.`id_st_banner_group`=3 AND sms.`active`=1
ORDER BY sms.`position` |
0.288
ms
|
4 |
Yes
|
|
/modules/stbanner/classes/StBannerClass.php:154
/modules/stbanner/stbanner.php:2646 (getAll)
/modules/stbanner/stbanner.php:2597 (_recurseBanners)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 203 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.286
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 449 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 212 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.286
ms
|
4 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 675 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_socialfollow" LIMIT 1 |
0.286
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:30 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 198 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 96
ORDER BY `position` |
0.286
ms
|
7 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 302 |
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute` a
LEFT JOIN `ps_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 32) LIMIT 1 |
0.286
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:5654 (__construct)
/classes/Product.php:5617 (computeUnitPriceRatio)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 342 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.286
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 419 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 213 LIMIT 1 |
0.286
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 62 |
SELECT SQL_NO_CACHE *
FROM `ps_country` a
LEFT JOIN `ps_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
0.285
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/AddressFormat.php:382 (__construct)
/classes/AddressFormat.php:417 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1744 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 351 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 228
ORDER BY `position` |
0.285
ms
|
9 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 275 |
SELECT SQL_NO_CACHE cg.`id_group`
FROM `ps_category_group` cg
WHERE (cg.`id_category` = 2) |
0.284
ms
|
3 |
|
|
/classes/Category.php:1707
/modules/stmegamenu/stmegamenu.php:4244 (getGroups)
/modules/stmegamenu/stmegamenu.php:3882 (getLink)
/modules/stmegamenu/stmegamenu.php:4039 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 160 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.284
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 463 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 212 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.284
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 538 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.284
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 61 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `ps_country`
WHERE `id_country` = 8 LIMIT 1 |
0.283
ms
|
1 |
|
|
/classes/Country.php:389
/classes/AddressFormat.php:612 (isNeedDniByCountryId)
/classes/AddressFormat.php:593 (getFormat)
/classes/AddressFormat.php:540 (getAddressCountryFormat)
/classes/AddressFormat.php:416 (getOrderedAddressFields)
/classes/controller/FrontController.php:1744 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 368 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 215) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.283
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 601 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 230 AND `id_shop` = 1 |
0.282
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 545 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 236
ORDER BY `position` |
0.281
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 328 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 228) |
0.281
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 87 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 88) |
0.280
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 549 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 232) |
0.280
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 594 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 230 LIMIT 1 |
0.280
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 630 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 229
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.280
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 667 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
WHERE smsg.`id_parent`=6 AND smsg.`active`=1 ORDER BY smsg.`position` |
0.280
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:180
/modules/stbanner/classes/StBannerGroup.php:185 (getSub)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/stbanner.php:2596 (recurseTree)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 324 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 236
ORDER BY `position` |
0.279
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 464 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 212
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.279
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 95 |
SELECT SQL_NO_CACHE tr.*
FROM `ps_tax_rule` tr
JOIN `ps_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 ('45760' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '45760')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
0.278
ms
|
0 |
|
|
/classes/tax/TaxRulesTaxManager.php:86
/classes/Product.php:3698 (getTaxCalculator)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5497 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 106 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 46 AND `id_group` = 1 LIMIT 1 |
0.278
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 476 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 61 LIMIT 1 |
0.278
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 609 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 230
ORDER BY `position` |
0.278
ms
|
6 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 643 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 228 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.278
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 692 |
SELECT SQL_NO_CACHE * FROM `ps_st_easy_content_setting`
WHERE id_st_easy_content_setting = 7
AND setting_type = 2 |
0.278
ms
|
55 |
|
|
/modules/steasycontent/classes/StEasyContentSettingClass.php:76
/modules/steasycontent/classes/StEasyContentColumnClass.php:175 (getSetting)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3599 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 120 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 29 AND `id_shop` = 1 |
0.277
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 183 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 96
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.277
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 357 |
SELECT SQL_NO_CACHE out_of_stock
FROM `ps_stock_available`
WHERE (id_product = 140) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.277
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:558
/classes/Product.php:7538 (outOfStock)
/classes/Pack.php:173 (loadStockData)
/classes/Pack.php:118 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 167 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 46
ORDER BY `position` |
0.277
ms
|
3 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 677 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "ps_linklist" LIMIT 1 |
0.276
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:106 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:37 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 484 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.276
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 553 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 232 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.276
ms
|
5 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 473 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.275
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 644 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 228
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.275
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 224 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.274
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 168 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 96 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.274
ms
|
7 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 235 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.274
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 238 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.274
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 565 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 232
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.274
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 605 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 36 AND c.`nright` >= 37 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.274
ms
|
19 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 654 |
SELECT SQL_NO_CACHE * FROM `ps_st_easy_content_setting`
WHERE id_st_easy_content_setting = 4
AND setting_type = 2 |
0.274
ms
|
51 |
|
|
/modules/steasycontent/classes/StEasyContentSettingClass.php:76
/modules/steasycontent/classes/StEasyContentColumnClass.php:175 (getSetting)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 495 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 47 LIMIT 1 |
0.273
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 546 |
SELECT SQL_NO_CACHE pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `ps_product_attribute_image` pai
LEFT JOIN `ps_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `ps_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 236 AND il.`id_lang` = 1 ORDER by i.`position` |
0.273
ms
|
1 |
Yes
|
|
/classes/Product.php:2650
/override/classes/Product.php:54 (getCombinationImages)
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 613 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 229 LIMIT 1 |
0.273
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 321 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 236
ORDER BY `position` |
0.272
ms
|
1 |
Yes
|
|
/modules/stthemeeditor/stthemeeditor.php:5467
/modules/stthemeeditor/stthemeeditor.php:5437 (getProductImages)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 458 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 3 AND c.`nright` >= 10 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.271
ms
|
2 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 535 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 236 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.271
ms
|
1 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:468 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 232 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.270
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 411 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.270
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 455 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.270
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 602 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 230 |
0.270
ms
|
1 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 340 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.270
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 348 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 228
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.270
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 246 |
SELECT SQL_NO_CACHE *
FROM `ps_prestablog_subblock_lang`
WHERE `id_prestablog_subblock` = 4 |
0.269
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/modules/prestablog/class/subblocks.php:75 (__construct)
/modules/prestablog/prestablog.php:12127 (__construct)
/modules/prestablog/prestablog.php:11935 (showSubBlocks)
/classes/Hook.php:1234 (hookDisplayHome)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 305 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 236 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.269
ms
|
1 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:468 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 514 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.269
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 622 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 229 |
0.269
ms
|
1 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 656 |
SELECT SQL_NO_CACHE * FROM `ps_st_easy_content_setting`
WHERE id_st_easy_content_setting = 6
AND setting_type = 2 |
0.269
ms
|
51 |
|
|
/modules/steasycontent/classes/StEasyContentSettingClass.php:76
/modules/steasycontent/classes/StEasyContentColumnClass.php:175 (getSetting)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 663 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
WHERE smsg.`id_parent`=2 AND smsg.`active`=1 ORDER BY smsg.`position` |
0.269
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:180
/modules/stbanner/classes/StBannerGroup.php:185 (getSub)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/stbanner.php:2596 (recurseTree)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 408 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.268
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 528 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 47 LIMIT 1 |
0.268
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 170 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 96 AND `id_shop` = 1 |
0.267
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 266 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stcompare" LIMIT 1 |
0.267
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 300 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `ps_product` p LEFT JOIN `ps_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN ps_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1) WHERE p.`id_product` = 236 AND pa.`id_product` = 236 AND pa.`id_product_attribute` = 32 LIMIT 1 |
0.267
ms
|
1 |
|
|
/classes/Product.php:1157
/classes/Product.php:5589 (getAvailableDate)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 501 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.267
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 544 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 236
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.267
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 132 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 43 AND `id_shop` = 1 |
0.267
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 436 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 34 AND c.`nright` >= 35 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.267
ms
|
18 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 320 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 236
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.266
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 555 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 232 AND `id_shop` = 1 |
0.266
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 636 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.266
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 659 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 167 AND `id_shop` = 1 LIMIT 1 |
0.266
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 678 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 1 AND `id_shop` = 1 LIMIT 1 |
0.266
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:106 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:37 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 107 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 46) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.266
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 650 |
SELECT SQL_NO_CACHE secc.*
FROM `ps_st_easy_content_column` secc
WHERE secc.`id_parent`=3 AND secc.`active`=1 AND secc.`id_st_easy_content`=2 ORDER BY secc.`position` |
0.265
ms
|
2 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentColumnClass.php:138
/modules/steasycontent/classes/StEasyContentColumnClass.php:160 (getSub)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 149 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 43
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.265
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 433 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 33 AND c.`nright` >= 40 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.265
ms
|
17 |
|
|
/classes/Category.php:1603
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 136 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.264
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 221 |
SELECT SQL_NO_CACHE c.*, cl.* FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 103 AND c.`nleft` >= 2 AND c.`nright` <= 103 ORDER BY `nleft` DESC |
0.264
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 482 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.264
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 506 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.264
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 569 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 232
ORDER BY `position` |
0.264
ms
|
5 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 148 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 43 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.263
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 140 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 20 AND `id_shop` = 1 |
0.263
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 492 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 13 LIMIT 1 |
0.263
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 578 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 231 AND `id_shop` = 1 |
0.263
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 229 |
SELECT SQL_NO_CACHE image_shop.`id_image`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
WHERE i.`id_product` = 96
AND image_shop.`cover` = 1 LIMIT 1 |
0.262
ms
|
7 |
|
|
/classes/Product.php:3293
/modules/steasyvideo/classes/EasyVideoBase.php:265 (getCover)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 208 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.261
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 346 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,29))) OR (location = 1 AND (id_products LIKE "%,228,%"))) |
0.261
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 596 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 230 AND `id_group` = 1 LIMIT 1 |
0.261
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 626 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.261
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 182 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 96 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.261
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 543 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 236 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.261
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 153 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 46 AND `id_shop` = 1 |
0.260
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 442 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `ps_image` i
INNER JOIN ps_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 1)
WHERE i.`id_product` = 213
ORDER BY `position` |
0.260
ms
|
6 |
Yes
|
|
/classes/Product.php:3268
/override/classes/Product.php:24 (getImages)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 633 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 45 LIMIT 1 |
0.260
ms
|
1 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 123 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.259
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 620 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 229 AND `id_shop` = 1 |
0.259
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 104 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 46 LIMIT 1 |
0.259
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 289 |
SELECT SQL_NO_CACHE ctg.`id_group`
FROM ps_category_group ctg
WHERE ctg.`id_category` = 2 AND ctg.`id_group` = 1 LIMIT 1 |
0.259
ms
|
1 |
|
|
/classes/Category.php:1757
/classes/Category.php:983 (checkAccess)
/src/Adapter/Category/CategoryProductSearchProvider.php:81 (getProducts)
/src/Adapter/Category/CategoryProductSearchProvider.php:98 (getProductsOrCount)
/modules/stfeaturedslider/stfeaturedslider.php:160 (runQuery)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 214 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.258
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 377 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 13) LIMIT 1 |
0.258
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 588 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 231
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.258
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 28 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "lgseoredirect" LIMIT 1 |
0.257
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/modules/lgseoredirect/lgseoredirect.php:862 (isEnabled)
/modules/lgseoredirect/lgseoredirect.php:811 (checkRedirection)
/classes/Hook.php:1234 (hookModuleRoutes)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 63 |
SELECT SQL_NO_CACHE *
FROM `ps_country_lang`
WHERE `id_country` = 8 |
0.257
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/AddressFormat.php:382 (__construct)
/classes/AddressFormat.php:417 (getFormattedAddressFieldsValues)
/classes/controller/FrontController.php:1744 (generateAddress)
/classes/controller/FrontController.php:545 (getTemplateVarShop)
/classes/controller/FrontController.php:623 (assignGeneralPurposeVariables)
/override/classes/controller/FrontController.php:11 (initContent)
/controllers/front/IndexController.php:18 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 258 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stlanguageselector" LIMIT 1 |
0.257
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 375 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.257
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 684 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 159 AND `id_shop` = 1 LIMIT 1 |
0.257
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 147 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,20,29))) OR (location = 1 AND (id_products LIKE "%,43,%"))) |
0.256
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 437 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,20,29))) OR (location = 1 AND (id_products LIKE "%,213,%"))) |
0.256
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 485 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.256
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 512 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.256
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 462 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,13,47))) OR (location = 1 AND (id_products LIKE "%,212,%"))) |
0.256
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 548 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 232 LIMIT 1 |
0.256
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 134 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 2) LIMIT 1 |
0.255
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 559 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 28 AND `id_shop` = 1 |
0.255
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 668 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
WHERE smsg.`id_parent`=7 AND smsg.`active`=1 ORDER BY smsg.`position` |
0.255
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:180
/modules/stbanner/classes/StBannerGroup.php:185 (getSub)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/stbanner.php:2596 (recurseTree)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 193 |
SELECT SQL_NO_CACHE pa.id_product_attribute
FROM `ps_product_attribute` pa INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 43 |
0.254
ms
|
1 |
|
|
/classes/Product.php:7179
/classes/Product.php:7259 (getProductAttributesIds)
/classes/Product.php:8086 (hasCombinations)
/classes/Product.php:8071 (getDynamicProductType)
/classes/Product.php:2641 (getProductType)
/override/classes/Product.php:54 (getCombinationImages)
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 496 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.254
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 606 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(23))) OR (location = 1 AND (id_products LIKE "%,230,%"))) |
0.254
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 102 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 43) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.253
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 201 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 22 AND `id_shop` = 1 LIMIT 1 |
0.253
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 399 |
SELECT SQL_NO_CACHE *
FROM `ps_image` i
LEFT JOIN `ps_image_lang` il ON (i.`id_image` = il.`id_image`) WHERE i.`id_product` = 214 AND il.`id_lang` = 1
ORDER BY i.`position` ASC |
0.253
ms
|
7 |
Yes
|
|
/classes/Image.php:259
/modules/sthoverimage/sthoverimage.php:461 (getImages)
/modules/sthoverimage/sthoverimage.php:338 (getHoverImageByProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 558 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 28) LIMIT 1 |
0.253
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 563 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(28))) OR (location = 1 AND (id_products LIKE "%,232,%"))) |
0.253
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 474 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.252
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 591 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 23 LIMIT 1 |
0.252
ms
|
1 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 687 |
SELECT SQL_NO_CACHE secc.*
FROM `ps_st_easy_content_column` secc
WHERE secc.`id_parent`=0 AND secc.`active`=1 AND secc.`id_st_easy_content`=4 ORDER BY secc.`position` |
0.252
ms
|
2 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentColumnClass.php:138
/modules/steasycontent/classes/StEasyContentColumnClass.php:160 (getSub)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3599 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 26 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 34 AND `id_shop` = 1 LIMIT 1 |
0.251
ms
|
0 |
|
|
/classes/module/Module.php:2267
/modules/lgseoredirect/lgseoredirect.php:101 (isEnabled)
:undefined (__construct)
/src/Core/Foundation/IoC/Container.php:104 (newInstance)
/src/Core/Foundation/IoC/Container.php:134 (makeInstanceFromClassName)
/src/Core/Foundation/IoC/Container.php:147 (doMake)
/src/Adapter/ServiceLocator.php:50 (make)
/classes/module/Module.php:1386 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1365 (coreLoadModule)
/classes/Hook.php:1106 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 282 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 157 AND `id_shop` = 1 LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 366 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 215) |
0.251
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 583 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 23 LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 233 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.251
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 445 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 212) |
0.251
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 99 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 43 LIMIT 1 |
0.250
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 586 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(23))) OR (location = 1 AND (id_products LIKE "%,231,%"))) |
0.250
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 587 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 231 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.250
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 651 |
SELECT SQL_NO_CACHE secc.*
FROM `ps_st_easy_content_column` secc
WHERE secc.`id_parent`=4 AND secc.`active`=1 AND secc.`id_st_easy_content`=2 ORDER BY secc.`position` |
0.250
ms
|
2 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentColumnClass.php:138
/modules/steasycontent/classes/StEasyContentColumnClass.php:160 (getSub)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3929 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayModuleCustomContent)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/modules/stthemeeditor/classes/BaseProductsSlider.php:620 (exec)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 135 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 2 AND `id_shop` = 1 |
0.250
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 293 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 236 LIMIT 1 |
0.250
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 420 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 213) |
0.250
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 29 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 80 AND `id_shop` = 1 LIMIT 1 |
0.249
ms
|
1 |
|
|
/classes/module/Module.php:2267
/modules/lgseoredirect/lgseoredirect.php:862 (isEnabled)
/modules/lgseoredirect/lgseoredirect.php:811 (checkRedirection)
/classes/Hook.php:1234 (hookModuleRoutes)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/classes/Dispatcher.php:575 (exec)
/override/classes/Dispatcher.php:92 (loadRoutes)
/classes/Dispatcher.php:233 (loadRoutes)
/override/classes/Dispatcher.php:42 (__construct)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 139 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 20) LIMIT 1 |
0.249
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 144 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.249
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 166 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 46
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.249
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 582 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 23 AND `id_shop` = 1 |
0.249
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 212 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.249
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 581 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 23) LIMIT 1 |
0.248
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 86 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 88 LIMIT 1 |
0.247
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 347 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 228 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.247
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 256 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 151 AND `id_shop` = 1 LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 477 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 515 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 629 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 229 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.246
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 688 |
SELECT SQL_NO_CACHE secc.*
FROM `ps_st_easy_content_column` secc
WHERE secc.`id_parent`=5 AND secc.`active`=1 AND secc.`id_st_easy_content`=4 ORDER BY secc.`position` |
0.246
ms
|
2 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentColumnClass.php:138
/modules/steasycontent/classes/StEasyContentColumnClass.php:160 (getSub)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3599 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 337 |
SELECT SQL_NO_CACHE product_type FROM `ps_product` WHERE id_product = 140 LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/Pack.php:72
/classes/Pack.php:404 (isPack)
/classes/Product.php:5596 (getItemTable)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 551 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 232) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.246
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 564 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 232 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.246
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 118 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 88 |
0.245
ms
|
1 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 199 |
SELECT SQL_NO_CACHE pa.id_product_attribute
FROM `ps_product_attribute` pa INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.`id_product` = 96 |
0.245
ms
|
1 |
|
|
/classes/Product.php:7179
/classes/Product.php:7259 (getProductAttributesIds)
/classes/Product.php:8086 (hasCombinations)
/classes/Product.php:8071 (getDynamicProductType)
/classes/Product.php:2641 (getProductType)
/override/classes/Product.php:54 (getCombinationImages)
/src/Adapter/Image/ImageRetriever.php:61 (getCombinationImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 336 |
SELECT SQL_NO_CACHE COUNT(*) FROM `ps_pack` WHERE id_product_pack = 140 LIMIT 1 |
0.245
ms
|
1 |
|
|
/classes/Pack.php:71
/classes/Pack.php:404 (isPack)
/classes/Product.php:5596 (getItemTable)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 623 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 45) LIMIT 1 |
0.245
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 639 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.245
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 665 |
SELECT SQL_NO_CACHE smsg.*
FROM `ps_st_banner_group` smsg
WHERE smsg.`id_parent`=4 AND smsg.`active`=1 ORDER BY smsg.`position` |
0.245
ms
|
7 |
Yes
|
|
/modules/stbanner/classes/StBannerGroup.php:180
/modules/stbanner/classes/StBannerGroup.php:185 (getSub)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/classes/StBannerGroup.php:189 (recurseTree)
/modules/stbanner/stbanner.php:2596 (recurseTree)
/modules/stbanner/stbanner.php:3190 (_prepareHook)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 96 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 88) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.245
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 395 |
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 `ps_product` p
INNER JOIN `ps_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `ps_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` = 214) |
0.244
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 133 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 43 |
0.244
ms
|
3 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 211 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.244
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 296 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 236) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.244
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 310 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.244
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 438 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 213 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.244
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 124 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.243
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 270 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 155 AND `id_shop` = 1 LIMIT 1 |
0.243
ms
|
1 |
|
|
/classes/module/Module.php:2267
/modules/stsidebar/stsidebar.php:1390 (isEnabled)
/modules/stsidebar/stsidebar.php:1329 (validateNativeModules)
/modules/stsidebar/stsidebar.php:1348 (hookDisplayMobileBar)
/classes/Hook.php:1234 (hookDisplayMobileBarLeft)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:122 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:200 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 274 |
SELECT SQL_NO_CACHE *
FROM `ps_st_mega_column`
WHERE `id_st_mega_menu`=2 AND `active`=1
ORDER BY `position` |
0.243
ms
|
3 |
Yes
|
|
/modules/stmegamenu/classes/StMegaColumnClass.php:58
/modules/stmegamenu/stmegamenu.php:3878 (getAll)
/modules/stmegamenu/stmegamenu.php:4039 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 343 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.243
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 456 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 13 LIMIT 1 |
0.243
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 580 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 231 |
0.243
ms
|
1 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 608 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 230
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.243
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 154 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 46 |
0.242
ms
|
3 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 164 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,20,29))) OR (location = 1 AND (id_products LIKE "%,46,%"))) |
0.242
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 352 |
SELECT SQL_NO_CACHE id_product_item, id_product_attribute_item, quantity FROM `ps_pack` where id_product_pack = 228 |
0.242
ms
|
2 |
|
|
/classes/Pack.php:169
/classes/Pack.php:118 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 504 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.242
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 574 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 231) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.242
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 691 |
SELECT SQL_NO_CACHE *
FROM `ps_st_easy_content_element`
WHERE `id_st_easy_content_column`=6 AND `active`=1
ORDER BY `position` ASC |
0.242
ms
|
3 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentElementClass.php:64
/modules/steasycontent/classes/StEasyContentColumnClass.php:173 (getByColumnId)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3599 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 165 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 46 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.241
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 624 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 45 AND `id_shop` = 1 |
0.241
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 307 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 236 AND `id_shop` = 1 |
0.240
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 568 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 28 LIMIT 1 |
0.240
ms
|
1 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/sthomenew/sthomenew.php:137 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 141 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.240
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 181 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,20,29))) OR (location = 1 AND (id_products LIKE "%,96,%"))) |
0.240
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 542 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 2 AND (id_category = 0 OR id_category IN(2,61))) OR (location = 1 AND (id_products LIKE "%,236,%"))) |
0.240
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 607 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 230 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.240
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 219 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.239
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 309 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 236 |
0.239
ms
|
2 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 625 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 45 LIMIT 1 |
0.239
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 517 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.238
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 178 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.238
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 556 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 28 LIMIT 1 |
0.238
ms
|
0 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 111 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 96 AND `id_group` = 1 LIMIT 1 |
0.237
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 155 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.237
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 158 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.237
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 344 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.237
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 372 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 215 AND `id_shop` = 1 |
0.237
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 536 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.237
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 259 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 152 AND `id_shop` = 1 LIMIT 1 |
0.236
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:81 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 439 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 213
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.236
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 451 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 212 AND `id_shop` = 1 |
0.236
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 311 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.235
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 315 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 61 LIMIT 1 |
0.235
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 525 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 13 LIMIT 1 |
0.235
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 414 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 214
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.234
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 162 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.234
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 188 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stfacetedsearch" LIMIT 1 |
0.234
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2266 (getModuleIdByName)
/override/classes/Product.php:79 (isEnabled)
/override/classes/Product.php:25 (getColorIdImage)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 676 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 20 AND `id_shop` = 1 LIMIT 1 |
0.234
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:30 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 225 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.232
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 279 |
SELECT SQL_NO_CACHE `width`, `height`
FROM ps_image_type
WHERE `name` = 'medium_default' LIMIT 1 |
0.232
ms
|
1 |
|
|
/classes/Image.php:536
/modules/stmegamenu/stmegamenu.php:4062 (getSize)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 298 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 236) AND (id_product_attribute = 32) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.232
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5585 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 378 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 13 AND `id_shop` = 1 |
0.232
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 389 |
SELECT SQL_NO_CACHE COUNT(0) as total,
(SUM(pc.`grade`) / COUNT(pc.`grade`)) AS avg,
MIN(pc.`grade`) AS min,
MAX(pc.`grade`) AS max
FROM `ps_st_product_comment` pc
WHERE pc.`id_product` = 215
AND pc.`id_parent` = 0
AND pc.`id_shop`=1 AND pc.`validate` = 1 LIMIT 1 |
0.232
ms
|
1 |
|
|
/modules/stproductcomments/classes/StProductCommentClass.php:373
/modules/stproductcomments/stproductcomments.php:1706 (getRatings)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 453 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.232
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 401 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 214 AND `id_shop` = 1 |
0.231
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 621 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 45 LIMIT 1 |
0.231
ms
|
0 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 319 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 236 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.231
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 172 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.230
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 314 |
SELECT SQL_NO_CACHE *
FROM `ps_category_lang`
WHERE `id_category` = 61 AND `id_shop` = 1 |
0.230
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 382 |
SELECT SQL_NO_CACHE *
FROM `ps_category` a
LEFT JOIN `ps_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 47) LIMIT 1 |
0.230
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:164 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 539 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 61 LIMIT 1 |
0.230
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 112 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 96) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.229
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 318 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 2 AND (id_category = 0 OR id_category IN(2,61))) OR (location = 1 AND (id_products LIKE "%,236,%"))) |
0.229
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 230 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.229
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 269 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stshoppingcart" LIMIT 1 |
0.229
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/stsidebar/stsidebar.php:1390 (isInstalled)
/modules/stsidebar/stsidebar.php:1329 (validateNativeModules)
/modules/stsidebar/stsidebar.php:1348 (hookDisplayMobileBar)
/classes/Hook.php:1234 (hookDisplayMobileBarLeft)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:122 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:200 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 397 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 214) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.229
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 428 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.228
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 637 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.228
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 204 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.228
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 426 |
SELECT SQL_NO_CACHE *
FROM `ps_product_lang`
WHERE `id_product` = 213 AND `id_shop` = 1 |
0.228
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 689 |
SELECT SQL_NO_CACHE secc.*
FROM `ps_st_easy_content_column` secc
WHERE secc.`id_parent`=6 AND secc.`active`=1 AND secc.`id_st_easy_content`=4 ORDER BY secc.`position` |
0.228
ms
|
2 |
Yes
|
|
/modules/steasycontent/classes/StEasyContentColumnClass.php:138
/modules/steasycontent/classes/StEasyContentColumnClass.php:160 (getSub)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/classes/StEasyContentColumnClass.php:165 (recurseLightTree)
/modules/steasycontent/steasycontent.php:2649 (recurseLightTree)
/modules/steasycontent/steasycontent.php:3599 (_prepareHook)
/classes/Hook.php:1234 (hookDisplayFooterAfter)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:137 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/27/2a/36/272a36e4d80e1ea28e619aabaf99cc113ce42a00_2.file.footer.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8d057082_62253374)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:513 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:135 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 571 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 231 LIMIT 1 |
0.227
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 265 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 184 AND `id_shop` = 1 LIMIT 1 |
0.226
ms
|
1 |
|
|
/classes/module/Module.php:2267
/modules/stcustomersignin/stcustomersignin.php:578 (isEnabled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 323 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 1
AND cl.id_shop = 1
AND cl.`id_category` = 2 LIMIT 1 |
0.226
ms
|
1 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Image/ImageRetriever.php:51 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 452 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 212 |
0.226
ms
|
3 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 584 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.226
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 384 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 47 LIMIT 1 |
0.225
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 697 |
SELECT SQL_NO_CACHE *
FROM `ps_st_wishlist_product`
WHERE `id_product` > 0
AND `id_st_wishlist` = 4109 |
0.225
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:210
/modules/stwishlist/classes/StWishListClass.php:175 (getProductsByIdWishlist)
/modules/stwishlist/stwishlist.php:1165 (getByIdCustomer)
/classes/Hook.php:1234 (hookDisplaySideBar)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:531 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 359 |
SELECT SQL_NO_CACHE product_attribute_shop.id_product_attribute
FROM ps_product_attribute pa
INNER JOIN ps_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
WHERE pa.id_product = 46 LIMIT 1 |
0.225
ms
|
1 |
|
|
/classes/Product.php:1054
/classes/Product.php:3563 (getDefaultAttribute)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:3914 (getPriceStatic)
/classes/Pack.php:120 (getPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 387 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 3 AND (id_manufacturer = 0 OR id_manufacturer=2)) OR (location = 2 AND (id_category = 0 OR id_category IN(2,13,47))) OR (location = 1 AND (id_products LIKE "%,215,%"))) |
0.223
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 263 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 198 AND `id_shop` = 1 LIMIT 1 |
0.223
ms
|
1 |
|
|
/classes/module/Module.php:2267
/modules/stcustomersignin/stcustomersignin.php:577 (isEnabled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 459 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 47 LIMIT 1 |
0.223
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 560 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 28 LIMIT 1 |
0.223
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 640 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.223
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 94 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_group`
WHERE `id_group` = 1 LIMIT 1 |
0.222
ms
|
1 |
|
|
/classes/Group.php:134
/classes/Product.php:3740 (getReductionByIdGroup)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 222 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.222
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 142 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.221
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 367 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 215 AND `id_group` = 1 LIMIT 1 |
0.221
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 373 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 215 |
0.221
ms
|
3 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 215 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.220
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 454 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.220
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 354 |
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 46) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.220
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:586
/classes/Product.php:7539 (getLocation)
/classes/Pack.php:173 (loadStockData)
/classes/Pack.php:118 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 579 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `ps_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 23 LIMIT 1 |
0.220
ms
|
0 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/modules/ststickers/classes/StStickersMapClass.php:157 (__construct)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 171 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 96 |
0.219
ms
|
3 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 396 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 214 AND `id_group` = 1 LIMIT 1 |
0.219
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 557 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 232 |
0.219
ms
|
1 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 407 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.219
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 365 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 215 LIMIT 1 |
0.218
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 189 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 205 AND `id_shop` = 1 LIMIT 1 |
0.218
ms
|
1 |
|
|
/classes/module/Module.php:2267
/override/classes/Product.php:79 (isEnabled)
/override/classes/Product.php:25 (getColorIdImage)
/src/Adapter/Image/ImageRetriever.php:55 (getImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/ps_bestsellers/ps_bestsellers.php:238 (present)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 434 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.218
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 264 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module` WHERE `name` = "stlovedproduct" LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/module/Module.php:2778
/classes/module/Module.php:2234 (getModuleIdByName)
/modules/stcustomersignin/stcustomersignin.php:578 (isInstalled)
/modules/stcustomersignin/stcustomersignin.php:602 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 286 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 160 AND `id_shop` = 1 LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 374 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 403 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 409 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 604 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.217
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 179 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.216
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 380 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.216
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 303 |
SELECT SQL_NO_CACHE *
FROM `ps_product_attribute_lang`
WHERE `id_product_attribute` = 32 |
0.215
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:5654 (__construct)
/classes/Product.php:5617 (computeUnitPriceRatio)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 447 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `ps_stock_available`
WHERE (id_product = 212) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.215
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 550 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 232 AND `id_group` = 1 LIMIT 1 |
0.215
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 394 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 214 LIMIT 1 |
0.215
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 101 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 43 AND `id_group` = 1 LIMIT 1 |
0.214
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:197 (getProductProperties)
/override/classes/ProductAssembler.php:55 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 523 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.214
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 267 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 185 AND `id_shop` = 1 LIMIT 1 |
0.213
ms
|
1 |
|
|
/classes/module/Module.php:2267
/classes/Hook.php:1240 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:84 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:30 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 388 |
SELECT SQL_NO_CACHE count(0)
FROM `ps_st_wishlist_product` whp
LEFT JOIN `ps_st_wishlist` wh ON (wh.`id_st_wishlist`=whp.`id_st_wishlist`)
WHERE whp.`id_product` = 215 AND wh.`id_customer`=0 AND wh.`id_shop`= 1 LIMIT 1 |
0.213
ms
|
1 |
|
|
/modules/stwishlist/classes/StWishListClass.php:369
/modules/stwishlist/stwishlist.php:1259 (countProCustomer)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 145 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.212
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 427 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 213 |
0.212
ms
|
3 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 460 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.212
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 175 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.211
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 329 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 228 AND `id_group` = 1 LIMIT 1 |
0.211
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 341 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.211
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 444 |
SELECT SQL_NO_CACHE 1 FROM `ps_specific_price` WHERE id_product = 212 LIMIT 1 |
0.211
ms
|
1 |
|
|
/classes/SpecificPrice.php:422
/classes/SpecificPrice.php:510 (couldHaveSpecificPrice)
/classes/Product.php:3573 (getSpecificPrice)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 540 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.211
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 220 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.210
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 223 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.210
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 209 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.208
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 316 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.208
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 573 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 231 AND `id_group` = 1 LIMIT 1 |
0.208
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 280 |
SELECT SQL_NO_CACHE `width`, `height`
FROM ps_image_type
WHERE `name` = 'category_default' LIMIT 1 |
0.208
ms
|
1 |
|
|
/classes/Image.php:536
/modules/stmegamenu/stmegamenu.php:4063 (getSize)
/classes/Hook.php:1234 (hookDisplayMainMenu)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:335 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/6e/55/8f/6e558ffb352c112bac43a5560413fc6f8e4e5343_2.file.header.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c6a9ac5_07088288)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:283 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:86 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 431 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 20 LIMIT 1 |
0.208
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 236 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
LEFT JOIN `ps_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 1 AND cl.id_shop = 1 ) WHERE c.`id_category` = 29 LIMIT 1 |
0.207
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 156 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.206
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 412 |
SELECT SQL_NO_CACHE id_st_sticker FROM `ps_st_sticker_map`
WHERE active = 1 AND (location = 0 OR (location = 2 AND (id_category = 0 OR id_category IN(2,20,29))) OR (location = 1 AND (id_products LIKE "%,214,%"))) |
0.206
ms
|
1 |
|
|
/modules/ststickers/classes/StStickersMapClass.php:188
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 421 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 213 AND `id_group` = 1 LIMIT 1 |
0.206
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 288 |
SELECT SQL_NO_CACHE `id_module` FROM `ps_module_shop` WHERE `id_module` = 0 AND `id_shop` = 1 LIMIT 1 |
0.204
ms
|
0 |
|
|
/classes/module/Module.php:2267
/modules/steasycontent/steasycontent.php:4246 (isEnabled)
/modules/steasycontent/steasycontent.php:4240 (renderShortcode)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 446 |
SELECT SQL_NO_CACHE `reduction`
FROM `ps_product_group_reduction_cache`
WHERE `id_product` = 212 AND `id_group` = 1 LIMIT 1 |
0.204
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/override/classes/Product.php:11 (getProductProperties)
/classes/ProductAssembler.php:174 (getProductProperties)
/override/classes/ProductAssembler.php:42 (assembleProduct)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 518 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.204
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 137 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.204
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 432 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 537 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 159 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.201
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 385 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.201
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 526 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.201
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 529 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.201
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:287 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:475 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.cache.php:43 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dceee4e6f9_31347191)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:102 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/b5/3d/4e/b53d4ee4583c99e3e6cb18714ac4e3cbb1139bd3_2.file.product-slider.tpl.cache.php:34 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c676620_74894258)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/62/fe/62/62fe622fb664cb083ba527b113932b4e6f5be2c1_2.module.stthemeeditorviewstemplatessliderhomepage.tpl.cache.php:103 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd4c6565b8_11631199)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_updatecache.php:38 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_cached.php:143 (updateCache)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:212 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/stthemeeditor/classes/BaseProductsSlider.php:646 (fetch)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 429 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.200
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 358 |
SELECT SQL_NO_CACHE location
FROM `ps_stock_available`
WHERE (id_product = 140) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.199
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:586
/classes/Product.php:7539 (getLocation)
/classes/Pack.php:173 (loadStockData)
/classes/Pack.php:118 (getItems)
/src/Adapter/Presenter/Product/ProductLazyArray.php:1121 (noPackPrice)
/src/Adapter/Presenter/Product/ProductLazyArray.php:121 (addPriceInformation)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/modules/stfeaturedslider/stfeaturedslider.php:190 (present)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 457 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.199
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 176 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.199
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 173 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.198
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:57 (exec)
/modules/ps_bestsellers/ps_bestsellers.php:232 (assembleProducts)
/modules/ps_bestsellers/ps_bestsellers.php:161 (getBestSellers)
/modules/ps_bestsellers/ps_bestsellers.php:148 (getWidgetVariables)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 561 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.197
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/sthomenew/sthomenew.php:136 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stthemeeditor/classes/BaseSlider.php:1514 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayHomeBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:153 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:190 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:180 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:133 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:124 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 402 |
SELECT SQL_NO_CACHE `id_category` FROM `ps_category_product`
WHERE `id_product` = 214 |
0.195
ms
|
3 |
|
|
/classes/Product.php:3146
/classes/Product.php:3199 (getProductCategories)
/modules/ststickers/classes/StStickersMapClass.php:160 (getCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 410 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.195
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 226 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.193
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 404 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.191
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 231 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.190
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 234 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.187
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 435 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.186
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ststickers/classes/StStickersMapClass.php:173 (getParentsCategories)
/modules/ststickers/ststickers.php:1704 (getForProduct)
/classes/Hook.php:1234 (hookActionStAssemble)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/override/classes/ProductAssembler.php:43 (exec)
/modules/stfeaturedslider/stfeaturedslider.php:189 (assembleProduct)
/modules/stthemeeditor/classes/BaseProductsSlider.php:547 (getProducts)
/modules/stfeaturedslider/stfeaturedslider.php:97 (_prepareHook)
/modules/stthemeeditor/classes/BaseProductsSlider.php:618 (_prepareHook)
/modules/stfeaturedslider/stfeaturedslider.php:206 (hookDisplayHome)
/modules/stthemeeditor/classes/BaseSlider.php:1438 (hookDisplayHome)
/classes/Hook.php:1234 (hookDisplayFullWidthTop)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:342 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/c8/3b/d6/c83bd68c823a68aef8ad53f86f27fbd1e4254536_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c565462_09952384)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/56/56/c8/5656c81d93097047431304911479671f45337f49_2.file.layout-full-width.tpl.php:50 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8c51b724_15920833)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/03/1a/39/031a396a47338e0c59b357fab522393f317f212f_2.file.page.tpl.php:33 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585f45c4_68757596)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/pandalayouts_layout_full_width_tpl/8c/0b/78/8c0b7835d0730b6d247345837dcba448b7ccfb69_2.file.index.tpl.php:37 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de585e0e85_32730864)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:764 (fetch)
/classes/controller/FrontController.php:748 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 237 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `ps_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.178
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/steasyvideo/classes/StEasyVideoClass.php:146 (getParentsCategories)
/modules/steasyvideo/classes/StEasyVideoClass.php:109 (getProductWhereConds)
/modules/steasyvideo/classes/EasyVideoBase.php:301 (getVideos)
/modules/steasyvideo/src/Repository/VideoRepository.php:36 (getVideosByProduct)
/var/cache/dev/smarty/compile/panda/fc/58/fc/fc58fc420cbffea677a1087f8268358a4b2de7cf_2.file.miniature.tpl.php:27 (getListingVideo)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dd8cef0257_76648593)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2376 (fetch)
/modules/steasyvideo/steasyvideo.php:1027 (display)
/classes/Hook.php:1234 (hookDisplayProductListReviews)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:447 (coreCallHook)
/classes/Hook.php:1126 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:286 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:474 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/panda/1e/31/9f/1e319f43aacb50f9c1c96b729cbe4b9974eba75e_2.file.product.tpl.php:42 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82dcee826122_78265335)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/panda/36/81/aa/3681aa30d1f85f48e2cf4794b77200e697f706a9_2.module.ps_bestsellersviewstemplateshookps_bestsellers.tpl.php:37 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_6a82de58306491_75776853)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDevTemplate.php:35 (fetch)
/classes/module/Module.php:2417 (fetch)
/modules/ps_bestsellers/ps_bestsellers.php:156 (fetch)
/classes/Hook.php:1245 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1174 (coreRenderWidget)
/controllers/front/IndexController.php:20 (exec)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|