| 70 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) WHERE ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature=8)) GROUP BY fp.id_feature_value |
105.981
ms
|
4962420 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 90 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 66 ORDER BY vl.`value` ASC |
17.965
ms
|
881 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 54 |
SELECT SQL_NO_CACHE DISTINCT f.id_feature, f.*, fl.*, IF(liflv.`url_name` IS NULL OR liflv.`url_name` = "", NULL, liflv.`url_name`) AS url_name, IF(liflv.`meta_title` IS NULL OR liflv.`meta_title` = "", NULL, liflv.`meta_title`) AS meta_title, lif.indexable FROM `myshop_feature` f INNER JOIN myshop_feature_shop feature_shop
ON (feature_shop.id_feature = f.id_feature AND feature_shop.id_shop = 1) LEFT JOIN `myshop_feature_lang` fl ON (f.`id_feature` = fl.`id_feature` AND fl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature` lif ON (f.`id_feature` = lif.`id_feature`) LEFT JOIN `myshop_layered_indexable_feature_lang_value` liflv ON (f.`id_feature` = liflv.`id_feature` AND liflv.`id_lang` = 5) ORDER BY f.`position` ASC |
11.480
ms
|
801 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:171
/modules/ps_facetedsearch/src/Filters/Converter.php:388 (getFeatures)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:166 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 656 |
SELECT SQL_NO_CACHE c.*, cl.*
FROM `myshop_category` c
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
LEFT JOIN `myshop_category_lang` cl ON c.`id_category` = cl.`id_category` AND cl.id_shop = 1
LEFT JOIN `myshop_category_group` cg ON c.`id_category` = cg.`id_category`
RIGHT JOIN `myshop_category` c2 ON c2.`id_category` = 2 AND c.`nleft` >= c2.`nleft` AND c.`nright` <= c2.`nright`
WHERE 1 AND c.`level_depth` <= 5 AND `id_lang` = 5
AND c.`active` = 1
AND cg.`id_group` IN (1)
GROUP BY c.`id_category`
ORDER BY c.`level_depth` ASC, category_shop.`position` ASC |
6.606
ms
|
164 |
Yes
|
Yes
|
/classes/Category.php:809
/modules/ps_categorytree/ps_categorytree.php:141 (getNestedCategories)
/modules/ps_categorytree/ps_categorytree.php:298 (getCategories)
/modules/ps_categorytree/ps_categorytree.php:266 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:226 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:251 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 74 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=137)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
6.543
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 204 |
SELECT SQL_NO_CACHE `id_hook`, `name`
FROM `myshop_hook`
UNION
SELECT `id_hook`, ha.`alias` as name
FROM `myshop_hook_alias` ha
INNER JOIN `myshop_hook` h ON ha.name = h.name |
6.324
ms
|
0 |
|
|
/classes/Hook.php:1549
/classes/Hook.php:231 (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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 71 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 8 ORDER BY vl.`value` ASC |
6.255
ms
|
372 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 78 |
SELECT SQL_NO_CACHE p.id_manufacturer, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY p.id_manufacturer |
5.886
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:661 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:146 (getManufacturersBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 268 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 896
ORDER BY `position` |
5.603
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 199 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=45)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
5.371
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 110 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=63)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
5.274
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 125 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=86)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
5.271
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 72 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=19)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
5.103
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 690 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (321) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
4.887
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 56 |
SELECT SQL_NO_CACHE p.id_product FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p GROUP BY p.id_product ORDER BY p.date_add DESC, p.id_product DESC |
4.612
ms
|
144 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Filters/Products.php:87 (execute)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:190 (getProductByFilters)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 200 |
SELECT SQL_NO_CACHE p.*,
ps.*,
pl.*,
sa.out_of_stock,
IFNULL(sa.quantity, 0) as quantity,
(DATEDIFF(
p.`date_add`,
DATE_SUB(
'2026-04-17 00:00:00',
INTERVAL 20 DAY
)
) > 0) as new
FROM myshop_product p
LEFT JOIN myshop_product_lang pl
ON pl.id_product = p.id_product
AND pl.id_shop = 1
AND pl.id_lang = 5
LEFT JOIN myshop_stock_available sa ON sa.id_product = p.id_product
AND sa.id_product_attribute = 0
AND sa.id_shop = 1 LEFT JOIN myshop_product_shop ps
ON ps.id_product = p.id_product
AND ps.id_shop = 1
WHERE p.id_product IN (490,950,1490,984,896,597,611,321) |
4.524
ms
|
8 |
|
|
/classes/ProductAssembler.php:81
/classes/ProductAssembler.php:191 (addMissingProductFieldsForMultipleProducts)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 102 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 11 ORDER BY vl.`value` ASC |
4.470
ms
|
178 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 84 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=64)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
4.353
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 111 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 22 ORDER BY agl.`name` ASC, a.`position` ASC |
4.326
ms
|
10 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 710 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "ps_emailsubscription" LIMIT 1 |
4.318
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/modules/posthemeoptions/elementor/widgets/PosNewsletterWidget.php:609 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 321
ORDER BY `position` |
4.243
ms
|
2 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 37 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "new-products"
OR m.page = "newproducts"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
4.094
ms
|
2 |
|
|
/classes/Meta.php:170
/classes/Meta.php:301 (getMetaByPage)
/classes/Meta.php:288 (getHomeMetas)
/classes/controller/FrontController.php:1744 (getMetaTags)
/classes/controller/ProductListingFrontController.php:554 (getTemplateVarPage)
/classes/controller/FrontController.php:533 (getTemplateVarPage)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 69 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 21 ORDER BY vl.`value` ASC |
4.008
ms
|
38 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 172 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=30)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
3.985
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 83 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 109 ORDER BY vl.`value` ASC |
3.927
ms
|
224 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 75 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=26)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.876
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 153 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=129)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.853
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 146 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=74)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.765
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 670 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =984 AND imgs.`rotator` =1 |
3.748
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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_module` FROM `myshop_module` WHERE `name` = "posquickmenu" LIMIT 1 |
3.733
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2229 (getModuleIdByName)
/modules/posthemeoptions/posthemeoptions.php:814 (isInstalled)
/modules/posthemeoptions/posthemeoptions.php:692 (getOptions)
/classes/Hook.php:1218 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/classes/controller/FrontController.php:601 (exec)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 224 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 984 LIMIT 1 |
3.728
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 184 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=69)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
3.587
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 154 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=49)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.585
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 105 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=19)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
3.571
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 180 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=27)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.519
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 65 |
SELECT SQL_NO_CACHE cp.id_category, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND cg.id_group='1' AND c.level_depth<=2 AND c.nleft>2 AND c.nright<329 GROUP BY cp.id_category |
3.508
ms
|
2592 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:992 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:158 (getCategoriesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 126 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=140)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.473
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 24 |
SELECT SQL_NO_CACHE * FROM `myshop_currency` c ORDER BY `iso_code` ASC |
3.438
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:222 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 15 |
SELECT SQL_NO_CACHE lower(name) as name
FROM `myshop_hook` h
WHERE (h.active = 1) |
3.437
ms
|
1276 |
|
|
/classes/Hook.php:1589
/classes/Hook.php:890 (getHookStatusByName)
/classes/Dispatcher.php:575 (exec)
/classes/Dispatcher.php:233 (loadRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 61 |
SELECT SQL_NO_CACHE COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_specific_price sp ON (
sp.id_product = p.id_product AND
sp.id_shop IN (0, 1) AND
sp.id_currency IN (0, 1) AND
sp.id_country IN (0, 8) AND
sp.id_group IN (0, 1) AND
sp.from_quantity = 1 AND
sp.reduction > 0 AND
sp.id_customer = 0 AND
sp.id_cart = 0 AND
(sp.from = '0000-00-00 00:00:00' OR '2026-04-17 15:45:08' >= sp.from) AND
(sp.to = '0000-00-00 00:00:00' OR '2026-04-17 15:45:08' <= sp.to)
) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((sp.reduction>0)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) |
3.430
ms
|
9504 |
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Adapter/MySQL.php:787 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:605 (count)
/modules/ps_facetedsearch/src/Filters/Block.php:143 (getHighlightsBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 196 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=71)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
3.421
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 181 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=39)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.413
ms
|
3456 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 57 |
SELECT SQL_NO_CACHE COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_stock_available sa_1 ON (p.id_product = sa_1.id_product AND IFNULL(pac.id_product_attribute, 0) = sa_1.id_product_attribute AND sa_1.id_shop = 1 AND sa_1.id_shop_group = 0 ) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((sa.quantity<=0 AND sa_1.out_of_stock IN (0, 2))) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) |
3.411
ms
|
15552 |
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Adapter/MySQL.php:787 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:480 (count)
/modules/ps_facetedsearch/src/Filters/Block.php:140 (getAvailabilitiesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 76 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 26 ORDER BY vl.`value` ASC |
3.406
ms
|
84 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 165 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=127)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.405
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 294 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "posmegamenu" LIMIT 1 |
3.380
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:565 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=105)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.348
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 205 |
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 `myshop_hook_module` hm
STRAIGHT_JOIN `myshop_hook` h ON (h.id_hook = hm.id_hook AND hm.id_shop = 1)
STRAIGHT_JOIN `myshop_module` as m ON (m.id_module = hm.id_module)
ORDER BY hm.position |
3.285
ms
|
308 |
|
|
/classes/Hook.php:487
/classes/Hook.php:522 (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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 265 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `myshop_category_lang` cl
WHERE `id_lang` = 5
AND cl.id_shop = 1
AND cl.`id_category` = 146 LIMIT 1 |
3.279
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 3 |
SELECT SQL_NO_CACHE *
FROM `myshop_shop` a
WHERE (a.`id_shop` = 1) LIMIT 1 |
3.238
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)
|
| 195 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 71 ORDER BY agl.`name` ASC, a.`position` ASC |
3.236
ms
|
3 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 86 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=14)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
3.226
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 139 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=164)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.225
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 79 |
SELECT SQL_NO_CACHE p.condition, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY p.condition |
3.174
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:394 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:137 (getConditionsBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 55 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 8 ORDER BY vl.`value` ASC |
3.153
ms
|
372 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Converter.php:402 (getFeatureValues)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:166 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 246 |
SELECT SQL_NO_CACHE pa.`available_date` FROM `myshop_product` p LEFT JOIN `myshop_product_attribute` pa ON (pa.`id_product` = p.`id_product`) INNER JOIN myshop_product_shop product_shop
ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) INNER JOIN myshop_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` = 611 AND pa.`id_product` = 611 AND pa.`id_product_attribute` = 1908 LIMIT 1 |
3.134
ms
|
1 |
|
|
/classes/Product.php:1157
/classes/Product.php:5589 (getAvailableDate)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 168 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=157)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.104
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 58 |
SELECT SQL_NO_CACHE COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((sa.out_of_stock=1) OR (sa.quantity>0)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) |
3.098
ms
|
7776 |
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Adapter/MySQL.php:787 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:494 (count)
/modules/ps_facetedsearch/src/Filters/Block.php:140 (getAvailabilitiesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 189 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 198 ORDER BY vl.`value` ASC |
3.088
ms
|
78 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 129 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=116)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.080
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 116 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=145)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.075
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 254 |
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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 321 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 321 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
3.073
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 708 |
SELECT SQL_NO_CACHE *
FROM `myshop_cms` a
LEFT JOIN `myshop_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 5
LEFT JOIN `myshop_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 2) AND (b.`id_shop` = 1) LIMIT 1 |
3.059
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Link.php:554 (__construct)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:374 (getCMSLink)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 88 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 106 ORDER BY vl.`value` ASC |
3.054
ms
|
304 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 293 |
SELECT SQL_NO_CACHE count(id_wishlist_product) FROM myshop_poswishlist w, myshop_poswishlist_product wp where w.id_wishlist = wp.id_wishlist and w.id_customer=0 LIMIT 1 |
3.044
ms
|
1 |
|
|
/modules/poswishlist/poswishlist.php:225
/modules/posthemeoptions/elementor/widgets/PosHeaderWishlistWidget.php:386 (hookdisplayNav)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 h.`name` as hook, m.`id_module`, h.`id_hook`, m.`name` as module
FROM `myshop_module` m
INNER JOIN myshop_module_shop module_shop
ON (module_shop.id_module = m.id_module AND module_shop.id_shop = 1)
INNER JOIN `myshop_hook_module` `hm` ON hm.`id_module` = m.`id_module`
INNER JOIN `myshop_hook` `h` ON hm.`id_hook` = h.`id_hook`
LEFT JOIN `myshop_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` |
3.036
ms
|
2592 |
Yes
|
Yes
|
/classes/Hook.php:1481
/classes/Hook.php:790 (getAllHookRegistrations)
/classes/Hook.php:932 (getHookModuleExecList)
/classes/Dispatcher.php:575 (exec)
/classes/Dispatcher.php:233 (loadRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 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 `myshop_configuration` c
LEFT JOIN `myshop_configuration_lang` cl ON (c.`id_configuration` = cl.`id_configuration`) |
3.034
ms
|
4450 |
|
|
/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)
|
| 127 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=181)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
3.031
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 22 |
SELECT SQL_NO_CACHE * FROM `myshop_hook_module_exceptions`
WHERE `id_shop` IN (1) |
2.993
ms
|
1 |
|
|
/classes/module/Module.php:2163
/classes/Hook.php:1032 (getExceptionsStatic)
/classes/controller/FrontController.php:205 (exec)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 192 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=192)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.977
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 18 |
SELECT SQL_NO_CACHE `id_hook`, `name` FROM `myshop_hook` |
2.922
ms
|
1276 |
|
|
/classes/Hook.php:1549
/classes/Hook.php:231 (getAllHookIds)
/classes/Hook.php:941 (getIdByName)
/classes/Dispatcher.php:575 (exec)
/classes/Dispatcher.php:233 (loadRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 20 |
SELECT SQL_NO_CACHE name, alias FROM `myshop_hook_alias` |
2.903
ms
|
87 |
|
|
/classes/Hook.php:352
/classes/Hook.php:151 (getCanonicalHookNames)
/classes/Hook.php:378 (normalizeHookName)
/classes/Hook.php:400 (getAllKnownNames)
/classes/Hook.php:1100 (isHookCallableOn)
/classes/Dispatcher.php:575 (exec)
/classes/Dispatcher.php:233 (loadRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 64 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`
FROM `myshop_category` c
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
LEFT JOIN `myshop_category_lang` cl ON c.`id_category` = cl.`id_category` AND cl.id_shop = 1
WHERE 1 AND `id_lang` = 5
AND c.`active` = 1
ORDER BY c.nleft, c.position |
2.901
ms
|
164 |
Yes
|
|
/classes/Category.php:738
/modules/ps_facetedsearch/src/Filters/Block.php:986 (getAllCategoriesName)
/modules/ps_facetedsearch/src/Filters/Block.php:158 (getCategoriesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 214 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 950) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
2.869
ms
|
0 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 176 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 34 ORDER BY agl.`name` ASC, a.`position` ASC |
2.859
ms
|
29 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 141 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=27)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.855
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 120 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=161)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.814
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 132 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=24)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.813
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 156 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 29 ORDER BY agl.`name` ASC, a.`position` ASC |
2.812
ms
|
37 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 190 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=248)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.802
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 445 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 165
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
2.779
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 260 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 950
ORDER BY `position` |
2.767
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 239 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 611 LIMIT 1 |
2.756
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 66 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 9 ORDER BY agl.`name` ASC, a.`position` ASC |
2.755
ms
|
0 |
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 152 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=117)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.745
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 311 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "possearchproducts" LIMIT 1 |
2.743
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:973 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=194)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.735
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 161 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=7)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.729
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 148 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=122)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.705
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 480 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 183) AND (b.`id_shop` = 1) LIMIT 1 |
2.703
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=96)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.699
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 114 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=23)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.690
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 122 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=84)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.684
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 68 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=21)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.670
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 150 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=121)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.652
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 297 |
SELECT SQL_NO_CACHE ps.*
FROM myshop_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 1 LIMIT 1 |
2.644
ms
|
9 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1252 (getSubmenuConfig)
/modules/posmegamenu/posmegamenu.php:761 (generateCss)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 32 |
SELECT SQL_NO_CACHE id_shop
FROM `myshop_currency_shop`
WHERE `id_currency` = 1
AND id_shop = 1 LIMIT 1 |
2.635
ms
|
1 |
|
|
/classes/ObjectModel.php:1581
/classes/Tools.php:697 (isAssociatedToShop)
/classes/controller/FrontController.php:331 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 271 |
SELECT SQL_NO_CACHE *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 611) AND (b.`id_shop` = 1) LIMIT 1 |
2.632
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 77 |
SELECT SQL_NO_CACHE m.*, ml.`description`, ml.`short_description`
FROM `myshop_manufacturer` m INNER JOIN myshop_manufacturer_shop manufacturer_shop
ON (manufacturer_shop.id_manufacturer = m.id_manufacturer AND manufacturer_shop.id_shop = 1)INNER JOIN `myshop_manufacturer_lang` ml ON (m.`id_manufacturer` = ml.`id_manufacturer` AND ml.`id_lang` = 5)WHERE 1 AND m.`active` = 1 ORDER BY m.`name` ASC |
2.621
ms
|
84 |
Yes
|
|
/classes/Manufacturer.php:185
/modules/ps_facetedsearch/src/Filters/Block.php:652 (getManufacturers)
/modules/ps_facetedsearch/src/Filters/Block.php:146 (getManufacturersBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 207 |
SELECT SQL_NO_CACHE `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 490 AND `id_group` = 1 LIMIT 1 |
2.620
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 101 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=11)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.599
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 277 |
SELECT SQL_NO_CACHE 1 FROM myshop_cart_product cp INNER JOIN myshop_product p
ON (p.id_product = cp.id_product) INNER JOIN myshop_product_shop ps
ON (ps.id_shop = cp.id_shop AND ps.id_product = p.id_product) WHERE cp.id_cart=0 LIMIT 1 |
2.581
ms
|
1 |
|
|
/classes/Cart.php:4353
/classes/Cart.php:4328 (hasProducts)
/classes/Cart.php:2210 (isVirtualCart)
/src/Adapter/Presenter/Cart/CartLazyArray.php:126 (getOrderTotal)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getTotals)
/src/Adapter/Presenter/AbstractLazyArray.php:104 (offsetGet)
:undefined (jsonSerialize)
/classes/Smarty/SmartyLazyRegister.php:61 (json_encode)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/c0/93/43/c09343f803a09ecd0b626865d1b9ddacce55145d_2.file.javascript.tpl.php:65 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464507399_91048898)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/53/d6/76/53d6767ea19e4c2543d78a363170789525e4ad95_2.file.head.tpl.php:363 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/53/d6/76/53d6767ea19e4c2543d78a363170789525e4ad95_2.file.head.tpl.php:58 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644e5692_31836766)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:167 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:41 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 164 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=82)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.568
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 488 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 187) AND (b.`id_shop` = 1) LIMIT 1 |
2.514
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 984) AND (b.`id_shop` = 1) LIMIT 1 |
2.507
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 52 |
SELECT SQL_NO_CACHE type, id_value, filter_show_limit, filter_type FROM myshop_layered_category
WHERE controller = 'new-products'
AND id_category = 0
AND id_shop = 1
GROUP BY `type`, id_value ORDER BY position ASC |
2.500
ms
|
485 |
Yes
|
Yes
|
/modules/ps_facetedsearch/src/Filters/Provider.php:61
/modules/ps_facetedsearch/src/Filters/Converter.php:263 (getFiltersForQuery)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:166 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 144 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=28)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.471
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 121 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=125)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.459
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 103 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=83)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.448
ms
|
864 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 44 |
SELECT SQL_NO_CACHE `need_identification_number`
FROM `myshop_country`
WHERE `id_country` = 8 LIMIT 1 |
2.426
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:1713 (generateAddress)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 118 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=1)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.384
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 94 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=16)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.373
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 98 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 18 ORDER BY agl.`name` ASC, a.`position` ASC |
2.370
ms
|
2 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 145 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=94)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.369
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 81 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=147)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.339
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 278 |
SELECT SQL_NO_CACHE COUNT(DISTINCT c.id_currency) FROM `myshop_currency` c
LEFT JOIN myshop_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 |
2.339
ms
|
1 |
|
|
/classes/Currency.php:1102
/classes/Currency.php:1119 (countActiveCurrencies)
/classes/module/Module.php:2343 (isMultiCurrencyActivated)
/modules/posquickmenu/posquickmenu.php:340 (getCacheId)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 82 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=109)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.336
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 89 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=66)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.336
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 197 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 42 ORDER BY agl.`name` ASC, a.`position` ASC |
2.334
ms
|
3 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 112 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=22)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.319
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 682 |
SELECT SQL_NO_CACHE *
FROM `myshop_product_lang`
WHERE `id_product` = 611 AND `id_shop` = 1 |
2.309
ms
|
5 |
|
|
/src/Adapter/EntityMapper.php:62
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:906 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:744 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:90 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:260 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 208 |
SELECT SQL_NO_CACHE `reduction`
FROM `myshop_group`
WHERE `id_group` = 1 LIMIT 1 |
2.294
ms
|
1 |
|
|
/classes/Group.php:134
/classes/Product.php:3740 (getReductionByIdGroup)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 174 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=33)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.271
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 17 |
SELECT SQL_NO_CACHE `name`, `alias` FROM `myshop_hook_alias` |
2.249
ms
|
87 |
|
|
/classes/Hook.php:300
/classes/Hook.php:330 (getAllHookAliases)
/classes/Hook.php:805 (getHookAliasesFor)
/classes/Hook.php:932 (getHookModuleExecList)
/classes/Dispatcher.php:575 (exec)
/classes/Dispatcher.php:233 (loadRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 170 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=20)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.222
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 60 |
SELECT SQL_NO_CACHE COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((p.on_sale=1)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) |
2.209
ms
|
1296 |
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Adapter/MySQL.php:787 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:565 (count)
/modules/ps_facetedsearch/src/Filters/Block.php:143 (getHighlightsBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 11 |
SELECT SQL_NO_CACHE COUNT(DISTINCT l.id_lang) FROM `myshop_lang` l
JOIN myshop_lang_shop lang_shop ON (lang_shop.id_lang = l.id_lang AND lang_shop.id_shop = 1)
WHERE l.`active` = 1 LIMIT 1 |
2.172
ms
|
4 |
|
|
/classes/Language.php:1186
/classes/Language.php:1488 (countActiveLanguages)
/classes/Dispatcher.php:489 (isMultiLanguageActivated)
/classes/Dispatcher.php:222 (setRequestUri)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 473 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 179
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
2.165
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=95)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.164
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 59 |
SELECT SQL_NO_CACHE COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((sa.quantity>0)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) |
2.148
ms
|
7776 |
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Adapter/MySQL.php:787 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:505 (count)
/modules/ps_facetedsearch/src/Filters/Block.php:140 (getAvailabilitiesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 108 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 21 ORDER BY agl.`name` ASC, a.`position` ASC |
2.135
ms
|
7 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 179 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 38 ORDER BY vl.`value` ASC |
2.133
ms
|
83 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 138 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=26)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.128
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 289 |
SELECT SQL_NO_CACHE value FROM myshop_ce_meta WHERE id = 2010000 AND name = '_elementor_data' LIMIT 1 |
2.114
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:120 (CE\get_post_meta)
/modules/creativeelements/includes/frontend.php:381 (getPlainEditor)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 305 |
SELECT SQL_NO_CACHE sr.*
FROM myshop_posmegamenu_submenu_row sr
WHERE sr.id_posmegamenu_item = 1 AND sr.`active` = 1 ORDER BY sr.position ASC |
2.095
ms
|
1 |
Yes
|
|
/modules/posmegamenu/posmegamenu.php:489
/modules/posmegamenu/posmegamenu.php:729 (getRowInfo)
/modules/posmegamenu/posmegamenu.php:784 (getSubMenu)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 158 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=178)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.080
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 663 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (490) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
2.064
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 value FROM myshop_ce_meta WHERE id = 1010000 AND name = '_elementor_data' LIMIT 1 |
2.056
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:120 (CE\get_post_meta)
/modules/creativeelements/includes/db.php:350 (getPlainEditor)
/modules/creativeelements/includes/css-file/post-css-file.php:94 (isBuiltWithElementor)
/modules/creativeelements/includes/frontend.php:390 (enqueue)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 109 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=21)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
2.045
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 117 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=180)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.031
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 318 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 102) AND (b.`id_shop` = 1) LIMIT 1 |
2.010
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=165)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
2.000
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 151 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=136)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.986
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 128 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 181 ORDER BY vl.`value` ASC |
1.956
ms
|
77 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 87 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=106)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.937
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 326 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 106) AND (b.`id_shop` = 1) LIMIT 1 |
1.916
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=93)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.888
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 135 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 25 ORDER BY agl.`name` ASC, a.`position` ASC |
1.879
ms
|
4 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 622 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 254) AND (b.`id_shop` = 1) LIMIT 1 |
1.878
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=176)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.868
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 498 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 192) AND (b.`id_shop` = 1) LIMIT 1 |
1.858
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=89)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.855
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 30 |
SELECT SQL_NO_CACHE *
FROM `myshop_currency` a
LEFT JOIN `myshop_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
1.850
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:688 (getCurrencyInstance)
/classes/controller/FrontController.php:331 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 193 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 36 ORDER BY agl.`name` ASC, a.`position` ASC |
1.841
ms
|
5 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 705 |
SELECT SQL_NO_CACHE *
FROM `myshop_cms` a
LEFT JOIN `myshop_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 5
LEFT JOIN `myshop_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 1) AND (b.`id_shop` = 1) LIMIT 1 |
1.841
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Link.php:554 (__construct)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:374 (getCMSLink)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=37)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.822
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 287 |
SELECT SQL_NO_CACHE *
FROM `myshop_ce_template` a
WHERE (a.`id_ce_template` = 2) LIMIT 1 |
1.811
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/modules/creativeelements/creativeelements.php:603 (__construct)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 716 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "pospopup" LIMIT 1 |
1.803
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:574 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=87)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.797
ms
|
3456 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 97 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=17)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.796
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 654 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "ps_categorytree" LIMIT 1 |
1.792
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:226 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:251 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 67 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=9)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.784
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 136 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=25)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.783
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 664 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =950 AND imgs.`rotator` =1 |
1.777
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 896) |
1.770
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 113 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 23 ORDER BY agl.`name` ASC, a.`position` ASC |
1.750
ms
|
3 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 342 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 114) AND (b.`id_shop` = 1) LIMIT 1 |
1.748
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 100 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=108)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.747
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 123 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=128)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.725
ms
|
864 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 334 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 110) AND (b.`id_shop` = 1) LIMIT 1 |
1.723
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 712 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "posfakeorder" LIMIT 1 |
1.719
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:574 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (611) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.712
ms
|
2 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 17 ORDER BY agl.`name` ASC, a.`position` ASC |
1.706
ms
|
2 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 142 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=158)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.675
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 669 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (1490) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.643
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=179)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.641
ms
|
2592 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 85 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 14 ORDER BY agl.`name` ASC, a.`position` ASC |
1.633
ms
|
81 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 99 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=18)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.630
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 510 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 198) AND (b.`id_shop` = 1) LIMIT 1 |
1.620
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 113) AND (b.`id_shop` = 1) LIMIT 1 |
1.607
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=20)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.594
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 8 |
SELECT SQL_NO_CACHE *
FROM `myshop_lang` a
LEFT JOIN `myshop_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 4) LIMIT 1 |
1.580
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)
|
| 91 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 15 ORDER BY agl.`name` ASC, a.`position` ASC |
1.561
ms
|
1 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 678 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (597) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.548
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 104
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
1.543
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 19 |
SELECT SQL_NO_CACHE m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `myshop_module` m
LEFT JOIN `myshop_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
1.532
ms
|
60 |
|
|
/classes/module/Module.php:330
/modules/smartblog/smartblog.php:43 (__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:1381 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1360 (coreLoadModule)
/classes/Hook.php:1090 (getInstanceByName)
/classes/Dispatcher.php:575 (exec)
/classes/Dispatcher.php:233 (loadRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 188 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=198)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.529
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 638 |
SELECT SQL_NO_CACHE pi.*, pl.*
FROM myshop_posmegamenu_item pi
LEFT JOIN `myshop_posmegamenu_item_lang` pl ON pl.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
LEFT JOIN `myshop_posmegamenu_item_shop` ps ON ps.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
WHERE pi.active = 1 AND ps.id_shop = 1 AND pl.id_lang=5 ORDER BY pi.position ASC, pi.id_posmegamenu_item ASC |
1.510
ms
|
14 |
Yes
|
|
/modules/posmegamenu/classes/PosMegamenuClass.php:231
/modules/posmegamenu/posmegamenu.php:817 (getMenus)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 19 ORDER BY agl.`name` ASC, a.`position` ASC |
1.507
ms
|
25 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 332 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 109) AND (b.`id_shop` = 1) LIMIT 1 |
1.506
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 92 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=15)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.500
ms
|
1728 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 572 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 229) AND (b.`id_shop` = 1) LIMIT 1 |
1.499
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image_type` WHERE 1 AND `categories` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
1.497
ms
|
7 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 143 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 28 ORDER BY agl.`name` ASC, a.`position` ASC |
1.423
ms
|
8 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 626 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 256) AND (b.`id_shop` = 1) LIMIT 1 |
1.406
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 106 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 20 ORDER BY agl.`name` ASC, a.`position` ASC |
1.371
ms
|
4 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 62 |
SELECT SQL_NO_CACHE psi.price_min, MIN(price_min) as min, MAX(price_max) as max FROM myshop_product p INNER JOIN myshop_layered_price_index psi ON (psi.id_product = p.id_product AND psi.id_shop = 1 AND psi.id_currency = 1 AND psi.id_country = 8) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' |
1.349
ms
|
16 |
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:57 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:250 (getMinMaxPriceValue)
/modules/ps_facetedsearch/src/Filters/Block.php:131 (getPriceRangeBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 63 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_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 |
1.341
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/ps_facetedsearch/src/Filters/Block.php:157 (__construct)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 131 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 24 ORDER BY agl.`name` ASC, a.`position` ASC |
1.336
ms
|
30 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 119 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 1 ORDER BY vl.`value` ASC |
1.336
ms
|
50 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 698 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "contact"
OR m.page = "contact"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
1.313
ms
|
1 |
|
|
/classes/Meta.php:170
/modules/posthemeoptions/elementor/src/WidgetHelper.php:861 (getMetaByPage)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:120 (getPagesOption)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=38)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
1.304
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 697 |
SELECT SQL_NO_CACHE c.`id_cms`, cl.`meta_title`, cl.`link_rewrite`
FROM `myshop_cms` c
INNER JOIN `myshop_cms_shop` cs
ON (c.`id_cms` = cs.`id_cms`)
INNER JOIN `myshop_cms_lang` cl
ON (c.`id_cms` = cl.`id_cms` AND cs.`id_shop` = cl.`id_shop`)
WHERE c.`id_cms_category` = 1
AND cl.`id_shop` = 1
AND cl.`id_lang` = 5
AND c.`active` = 1
ORDER BY `position` |
1.264
ms
|
8 |
Yes
|
|
/modules/posthemeoptions/elementor/src/WidgetHelper.php:848
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:110 (getCMSPages)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 73 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 19 ORDER BY vl.`value` ASC |
1.260
ms
|
46 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 322 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 104) AND (b.`id_shop` = 1) LIMIT 1 |
1.251
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 21 |
SELECT SQL_NO_CACHE m.page, ml.url_rewrite, ml.id_lang
FROM `myshop_meta` m
LEFT JOIN `myshop_meta_lang` ml ON (m.id_meta = ml.id_meta AND ml.id_shop = 1 )
ORDER BY LENGTH(ml.url_rewrite) DESC |
1.236
ms
|
285 |
Yes
|
|
/classes/Dispatcher.php:623
/classes/Dispatcher.php:233 (loadRoutes)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 320 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 103) AND (b.`id_shop` = 1) LIMIT 1 |
1.223
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 251 |
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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 321) |
1.208
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 536 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 211) AND (b.`id_shop` = 1) LIMIT 1 |
1.190
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 177 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=34)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.175
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 206 |
SELECT SQL_NO_CACHE tr.*
FROM `myshop_tax_rule` tr
JOIN `myshop_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 ('0' BETWEEN tr.`zipcode_from` AND tr.`zipcode_to`
OR (tr.`zipcode_to` = 0 AND tr.`zipcode_from` IN(0, '0')))
ORDER BY tr.`zipcode_from` DESC, tr.`zipcode_to` DESC, tr.`id_state` DESC, tr.`id_country` DESC |
1.170
ms
|
0 |
|
|
/classes/tax/TaxRulesTaxManager.php:86
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 255 |
SELECT SQL_NO_CACHE *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 490) AND (b.`id_shop` = 1) LIMIT 1 |
1.163
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 263 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 1490
ORDER BY `position` |
1.163
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 186 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=70)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.134
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 522 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 204) AND (b.`id_shop` = 1) LIMIT 1 |
1.132
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 130 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 116 ORDER BY vl.`value` ASC |
1.131
ms
|
69 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 261 |
SELECT SQL_NO_CACHE *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 1490) AND (b.`id_shop` = 1) LIMIT 1 |
1.120
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 296 |
SELECT SQL_NO_CACHE pi.*, pl.*
FROM myshop_posmegamenu_item pi
LEFT JOIN `myshop_posmegamenu_item_lang` pl ON pl.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
LEFT JOIN `myshop_posmegamenu_item_shop` ps ON ps.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
WHERE pi.active = 1 AND ps.id_shop = 1 AND pl.id_lang=5 ORDER BY pi.position ASC, pi.id_posmegamenu_item ASC |
1.114
ms
|
14 |
Yes
|
|
/modules/posmegamenu/classes/PosMegamenuClass.php:231
/modules/posmegamenu/posmegamenu.php:1235 (getMenus)
/modules/posmegamenu/posmegamenu.php:761 (generateCss)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 269 |
SELECT SQL_NO_CACHE *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 597) AND (b.`id_shop` = 1) LIMIT 1 |
1.112
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 53 |
SELECT SQL_NO_CACHE ag.id_attribute_group, agl.public_name as attribute_group_name, is_color_group, IF(liaglv.`url_name` IS NULL OR liaglv.`url_name` = "", NULL, liaglv.`url_name`) AS url_name, IF(liaglv.`meta_title` IS NULL OR liaglv.`meta_title` = "", NULL, liaglv.`meta_title`) AS meta_title, IFNULL(liag.indexable, TRUE) AS indexable FROM `myshop_attribute_group` ag INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) LEFT JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_attribute_group` liag ON (ag.`id_attribute_group` = liag.`id_attribute_group`) LEFT JOIN `myshop_layered_indexable_attribute_group_lang_value` AS liaglv ON (ag.`id_attribute_group` = liaglv.`id_attribute_group` AND agl.`id_lang` = 5) GROUP BY ag.id_attribute_group ORDER BY ag.`position` ASC |
1.105
ms
|
57 |
Yes
|
Yes
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:137
/modules/ps_facetedsearch/src/Filters/Converter.php:413 (getAttributesGroups)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:166 (createFacetedSearchFiltersFromQuery)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 616 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 251) AND (b.`id_shop` = 1) LIMIT 1 |
1.101
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (984) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.090
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 676 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =597 AND imgs.`rotator` =1 |
1.082
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=36)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.081
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 10 |
SELECT SQL_NO_CACHE domain, domain_ssl
FROM myshop_shop_url
WHERE main = 1
AND id_shop = 1 LIMIT 1 |
1.080
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)
|
| 275 |
SELECT SQL_NO_CACHE *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 321) AND (b.`id_shop` = 1) LIMIT 1 |
1.076
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 666 |
SELECT SQL_NO_CACHE pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (950) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
1.046
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 345 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 115
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
1.045
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 33 |
SELECT SQL_NO_CACHE *
FROM `myshop_group` a
LEFT JOIN `myshop_group_shop` `c` ON a.`id_group` = c.`id_group` AND c.`id_shop` = 1
WHERE (a.`id_group` = 1) LIMIT 1 |
1.031
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:261 (getCurrent)
/classes/Cart.php:225 (setTaxCalculationMethod)
/classes/controller/FrontController.php:439 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 561 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 223
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
1.028
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 26 ORDER BY agl.`name` ASC, a.`position` ASC |
1.027
ms
|
27 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 649 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "ps_languageselector" LIMIT 1 |
1.025
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/90/dc/00/90dc0040a0e5a73c3460c03fa2191049195f9fc2_2.file.menu-mobile.tpl.php:60 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22913da04a9_28117789)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:594 (fetch)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 157 |
SELECT SQL_NO_CACHE pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=29)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
1.024
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/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 myshop_shop_group gs
LEFT JOIN myshop_shop s
ON s.id_shop_group = gs.id_shop_group
LEFT JOIN myshop_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 |
1.023
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)
|
| 236 |
SELECT SQL_NO_CACHE `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 597 AND `id_group` = 1 LIMIT 1 |
1.019
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 217 |
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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 1490) |
1.018
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 213 |
SELECT SQL_NO_CACHE `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 950 AND `id_group` = 1 LIMIT 1 |
1.007
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 709 |
SELECT SQL_NO_CACHE *
FROM `myshop_cms` a
LEFT JOIN `myshop_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 5
LEFT JOIN `myshop_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 3) AND (b.`id_shop` = 1) LIMIT 1 |
1.002
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Link.php:554 (__construct)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:374 (getCMSLink)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 270 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 597
ORDER BY `position` |
1.001
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 26 |
SELECT SQL_NO_CACHE value FROM `myshop_configuration` WHERE `name` = "PS_MULTISHOP_FEATURE_ACTIVE" LIMIT 1 |
0.999
ms
|
1 |
|
|
/classes/shop/Shop.php:1191
/classes/Currency.php:948 (isFeatureActive)
/classes/Currency.php:870 (getIdByQuery)
/src/Adapter/Currency/CurrencyDataProvider.php:72 (getIdByIsoCode)
/src/Adapter/Currency/CurrencyDataProvider.php:94 (getCurrencyByIsoCode)
/src/Core/Localization/Currency/DataLayer/CurrencyDatabase.php:81 (getCurrencyByIsoCodeAndLocale)
/src/Core/Data/Layer/AbstractDataLayer.php:70 (doRead)
/src/Core/Data/Layer/AbstractDataLayer.php:129 (read)
/src/Core/Data/Layer/AbstractDataLayer.php:74 (propagateRead)
/src/Core/Localization/Currency/CurrencyDataSource.php:47 (read)
/src/Core/Localization/Currency/CurrencyDataSource.php:89 (getLocalizedCurrencyData)
/src/Core/Localization/Currency/CurrencyDataSource.php:76 (formatCurrenciesData)
/src/Core/Localization/Currency/Repository.php:67 (getAllInstalledCurrenciesData)
/src/Core/Localization/Locale/Repository.php:186 (getAllInstalledCurrencies)
/src/Core/Localization/Locale/Repository.php:129 (getPriceSpecifications)
/classes/controller/Controller.php:198 (getLocale)
/classes/controller/FrontController.php:222 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 169 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=142)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
0.998
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 587 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 236
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.980
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.*, cl.* FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 5 AND cl.id_shop = 1 ) WHERE c.`nleft` <= 2 AND c.`nright` >= 329 AND c.`nleft` >= 2 AND c.`nright` <= 329 ORDER BY `nleft` DESC |
0.969
ms
|
1 |
|
|
/classes/Category.php:1603
/modules/ps_categorytree/ps_categorytree.php:364 (getParentsCategories)
/modules/ps_categorytree/ps_categorytree.php:147 (getIdsOfCategoriesInPathToCurrentCategory)
/modules/ps_categorytree/ps_categorytree.php:298 (getCategories)
/modules/ps_categorytree/ps_categorytree.php:266 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:226 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:251 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pac.id_attribute, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) INNER JOIN myshop_attribute a ON (a.id_attribute = pac.id_attribute) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((a.id_attribute_group=42)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY pac.id_attribute |
0.961
ms
|
3888 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:737 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 435 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 160
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.958
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 30 ORDER BY agl.`name` ASC, a.`position` ASC |
0.952
ms
|
75 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 291 |
SELECT SQL_NO_CACHE value FROM myshop_ce_meta WHERE id = 2010000 AND name = '_elementor_edit_mode' LIMIT 1 |
0.947
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:200 (CE\get_post_meta)
/modules/creativeelements/includes/db.php:351 (getEditMode)
/modules/creativeelements/includes/css-file/post-css-file.php:94 (isBuiltWithElementor)
/modules/creativeelements/includes/frontend.php:390 (enqueue)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 178) AND (b.`id_shop` = 1) LIMIT 1 |
0.929
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 259) AND (b.`id_shop` = 1) LIMIT 1 |
0.922
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 347 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 116
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.916
ms
|
4 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 195
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.914
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 163 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=110)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
0.912
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 517 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 201
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.905
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 244) AND (b.`id_shop` = 1) LIMIT 1 |
0.887
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "prices-drop"
OR m.page = "pricesdrop"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.878
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posthemeoptions/elementor/src/WidgetHelper.php:877 (getMetaByPage)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:120 (getPagesOption)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 197) AND (b.`id_shop` = 1) LIMIT 1 |
0.876
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 169
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.875
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 50 |
SELECT SQL_NO_CACHE SUM(`quantity`)
FROM `myshop_cart_product`
WHERE `id_cart` = 0 LIMIT 1 |
0.873
ms
|
1 |
|
|
/classes/Cart.php:1391
/src/Adapter/Presenter/Cart/CartLazyArray.php:235 (getNbProducts)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getProductsCount)
/modules/posshoppingcart/posshoppingcart.php:61 (offsetGet)
/classes/Hook.php:1218 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/classes/controller/FrontController.php:601 (exec)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 313 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 2
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.872
ms
|
11 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 302 |
SELECT SQL_NO_CACHE pi.*, pl.*
FROM myshop_posmegamenu_item pi
LEFT JOIN `myshop_posmegamenu_item_lang` pl ON pl.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
LEFT JOIN `myshop_posmegamenu_item_shop` ps ON ps.`id_posmegamenu_item` = pi.`id_posmegamenu_item`
WHERE pi.active = 1 AND ps.id_shop = 1 AND pl.id_lang=5 ORDER BY pi.position ASC, pi.id_posmegamenu_item ASC |
0.860
ms
|
14 |
Yes
|
|
/modules/posmegamenu/classes/PosMegamenuClass.php:231
/modules/posmegamenu/posmegamenu.php:769 (getMenus)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 144) AND (b.`id_shop` = 1) LIMIT 1 |
0.849
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 357 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 121
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.838
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 617 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 251
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.835
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 145
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.823
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 950) AND (b.`id_shop` = 1) LIMIT 1 |
0.819
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 407 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 146
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.815
ms
|
5 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 242
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.814
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 158
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.811
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 231
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.809
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 value FROM myshop_ce_meta WHERE id = 2010000 AND name = '_elementor_edit_mode' LIMIT 1 |
0.806
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:200 (CE\get_post_meta)
/modules/creativeelements/includes/frontend.php:376 (getEditMode)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=97)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
0.798
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/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 myshop_shop_url su
LEFT JOIN myshop_shop s ON (s.id_shop = su.id_shop)
WHERE (su.domain = 'www.hydroparadise.com' OR su.domain_ssl = 'www.hydroparadise.com')
AND s.active = 1
AND s.deleted = 0
ORDER BY LENGTH(CONCAT(su.physical_uri, su.virtual_uri)) DESC |
0.794
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)
|
| 455 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 170
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.789
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 243
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.787
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 7 ORDER BY vl.`value` ASC |
0.781
ms
|
64 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 351 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 118
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.771
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 240) AND (b.`id_shop` = 1) LIMIT 1 |
0.764
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 153
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.760
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =1490 AND imgs.`rotator` =1 |
0.753
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 437 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 161
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.750
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 l.*, ls.`id_shop`
FROM `myshop_lang` l
LEFT JOIN `myshop_lang_shop` ls ON (l.id_lang = ls.id_lang) |
0.742
ms
|
4 |
|
|
/classes/Language.php:1050
/config/config.inc.php:132 (loadLanguages)
/index.php:20 (require_once)
|
| 155 |
SELECT SQL_NO_CACHE v.*, vl.*, IF(lifvlv.`url_name` IS NULL OR lifvlv.`url_name` = "", NULL, lifvlv.`url_name`) AS url_name, IF(lifvlv.`meta_title` IS NULL OR lifvlv.`meta_title` = "", NULL, lifvlv.`meta_title`) AS meta_title FROM `myshop_feature_value` v LEFT JOIN `myshop_feature_value_lang` vl ON (v.`id_feature_value` = vl.`id_feature_value` AND vl.`id_lang` = 5) LEFT JOIN `myshop_layered_indexable_feature_value_lang_value` lifvlv ON (v.`id_feature_value` = lifvlv.`id_feature_value` AND lifvlv.`id_lang` = 5) WHERE v.`id_feature` = 49 ORDER BY vl.`value` ASC |
0.741
ms
|
69 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:204
/modules/ps_facetedsearch/src/Filters/Block.php:864 (getFeatureValues)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 166 |
SELECT SQL_NO_CACHE fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=172)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
0.739
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 330 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 108) AND (b.`id_shop` = 1) LIMIT 1 |
0.734
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 138
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.731
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 247) AND (b.`id_shop` = 1) LIMIT 1 |
0.729
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 556 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 221) AND (b.`id_shop` = 1) LIMIT 1 |
0.729
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=104)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
0.723
ms
|
1296 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 327 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 106
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.720
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 717 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 113 AND `id_shop` = 1 LIMIT 1 |
0.719
ms
|
1 |
|
|
/classes/module/Module.php:2262
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:574 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 110
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.711
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 368 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 127) AND (b.`id_shop` = 1) LIMIT 1 |
0.710
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 433 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 159
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.706
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 232
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.700
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 176
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.697
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 379 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 132
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.695
ms
|
5 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 140 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 27 ORDER BY agl.`name` ASC, a.`position` ASC |
0.693
ms
|
5 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 466 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 176) AND (b.`id_shop` = 1) LIMIT 1 |
0.685
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 114
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.680
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 235
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.678
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 246
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.677
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 316 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 101) AND (b.`id_shop` = 1) LIMIT 1 |
0.675
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 463 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 174
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.672
ms
|
5 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 443 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 164
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.671
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 273 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 611
ORDER BY `position` |
0.670
ms
|
3 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 317 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 101
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.668
ms
|
4 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 597) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.663
ms
|
0 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 613 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 249
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.662
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_currency` a
LEFT JOIN `myshop_currency_lang` `b` ON a.`id_currency` = b.`id_currency` AND b.`id_lang` = 5
LEFT JOIN `myshop_currency_shop` `c` ON a.`id_currency` = c.`id_currency` AND c.`id_shop` = 1
WHERE (a.`id_currency` = 1) LIMIT 1 |
0.661
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:222 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 609 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 247
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.655
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 611 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 248
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.653
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 80 |
SELECT SQL_NO_CACHE MIN(p.weight) as min, MAX(p.weight) as max FROM myshop_product p INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' |
0.652
ms
|
16 |
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:774 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:339 (getMinMaxValue)
/modules/ps_facetedsearch/src/Filters/Block.php:134 (getWeightRangeBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 6 |
SELECT SQL_NO_CACHE *
FROM `myshop_country` a
LEFT JOIN `myshop_country_lang` `b` ON a.`id_country` = b.`id_country` AND b.`id_lang` = 2
LEFT JOIN `myshop_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
0.652
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)
|
| 272 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `myshop_category_lang` cl
WHERE `id_lang` = 5
AND cl.id_shop = 1
AND cl.`id_category` = 161 LIMIT 1 |
0.651
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 328 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 107) AND (b.`id_shop` = 1) LIMIT 1 |
0.636
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_product` a
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 611) LIMIT 1 |
0.632
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Product.php:685 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:906 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:744 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:90 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:260 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 215) AND (b.`id_shop` = 1) LIMIT 1 |
0.631
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 213
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.630
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 253
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.624
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 352 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 119) AND (b.`id_shop` = 1) LIMIT 1 |
0.622
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image_type` WHERE 1 AND `stores` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.622
ms
|
7 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 534 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 210) AND (b.`id_shop` = 1) LIMIT 1 |
0.618
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 218
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.618
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 244
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.615
ms
|
4 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 109
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.615
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 183 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 69 ORDER BY agl.`name` ASC, a.`position` ASC |
0.614
ms
|
2 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 596 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 241) AND (b.`id_shop` = 1) LIMIT 1 |
0.612
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 174) AND (b.`id_shop` = 1) LIMIT 1 |
0.611
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 209
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.609
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 207
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.606
ms
|
4 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 123
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.604
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 133
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.604
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 149
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.604
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_product` a
LEFT JOIN `myshop_product_lang` `b` ON a.`id_product` = b.`id_product` AND b.`id_lang` = 5
LEFT JOIN `myshop_product_shop` `c` ON a.`id_product` = c.`id_product` AND c.`id_shop` = 1
WHERE (a.`id_product` = 896) AND (b.`id_shop` = 1) LIMIT 1 |
0.603
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 530 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 208) AND (b.`id_shop` = 1) LIMIT 1 |
0.602
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 215
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.602
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 147) AND (b.`id_shop` = 1) LIMIT 1 |
0.598
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "index"
OR m.page = "index"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.597
ms
|
1 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:922 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:778 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 1 FROM `myshop_specific_price` WHERE id_product = 1490 LIMIT 1 |
0.591
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 315 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 100
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.590
ms
|
4 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 163
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.589
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 152
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.589
ms
|
5 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 674 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =896 |
0.588
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 427 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 156
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.586
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 581 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 233
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.586
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 196
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.584
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 223) AND (b.`id_shop` = 1) LIMIT 1 |
0.583
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 227
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.581
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 fp.id_feature, fp.id_feature_value, COUNT(DISTINCT p.id_product) c FROM (SELECT p.id_product, p.id_manufacturer, SUM(sa.quantity) as quantity, p.condition, p.weight, p.price, psales.quantity as sales, p.on_sale, p.date_add FROM myshop_product p LEFT JOIN myshop_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN myshop_product_attribute_combination pac ON (pa.id_product_attribute = pac.id_product_attribute) LEFT JOIN myshop_stock_available sa ON (p.id_product = sa.id_product AND IFNULL(pac.id_product_attribute, 0) = sa.id_product_attribute AND sa.id_shop = 1 AND sa.id_shop_group = 0 ) LEFT JOIN myshop_product_sale psales ON (psales.id_product = p.id_product) INNER JOIN myshop_product_shop ps ON (p.id_product = ps.id_product AND ps.id_shop = 1 AND ps.active = TRUE) INNER JOIN myshop_category_product cp ON (p.id_product = cp.id_product) INNER JOIN myshop_category c ON (cp.id_category = c.id_category AND c.active=1) LEFT JOIN myshop_category_group cg ON (cg.id_category = c.id_category) LEFT JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) WHERE ((fp.id_feature_value IN (972, 974, 1850, 1150))) AND ps.id_shop='1' AND ps.visibility IN ('both', 'catalog') AND cg.id_group='1' AND p.date_add>'2026-03-29 00:00:00' GROUP BY p.id_product) p INNER JOIN myshop_feature_product fp ON (p.id_product = fp.id_product) LEFT JOIN myshop_feature_product fp_1 ON (p.id_product = fp_1.id_product) WHERE ((fp.id_feature=40)) AND ((fp_1.id_feature_value IN (972, 974, 1850, 1150))) GROUP BY fp.id_feature_value |
0.580
ms
|
1728 |
Yes
|
|
/modules/ps_facetedsearch/src/Adapter/MySQL.php:85
/modules/ps_facetedsearch/src/Adapter/MySQL.php:808 (execute)
/modules/ps_facetedsearch/src/Filters/Block.php:855 (valueCount)
/modules/ps_facetedsearch/src/Filters/Block.php:154 (getFeaturesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 7 |
SELECT SQL_NO_CACHE *
FROM `myshop_shop_group` a
WHERE (a.`id_shop_group` = 1) LIMIT 1 |
0.579
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)
|
| 583 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 234
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.578
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 234 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 597 LIMIT 1 |
0.574
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 615 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 250
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.571
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 154) AND (b.`id_shop` = 1) LIMIT 1 |
0.570
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 137
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.569
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 243 |
SELECT SQL_NO_CACHE COALESCE(SUM(first_level_quantity) + SUM(pack_quantity), 0) as deep_quantity,
COALESCE(SUM(first_level_quantity), 0) as quantity
FROM (SELECT SUM(cp.`quantity`) as first_level_quantity, 0 as pack_quantity
FROM `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 611 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 611 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.565
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 392 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 139) AND (b.`id_shop` = 1) LIMIT 1 |
0.565
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 497 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 191
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.563
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 146) AND (b.`id_shop` = 1) LIMIT 1 |
0.561
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 543 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 214
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.558
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 216
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.552
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =490 |
0.552
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 261
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.549
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 714 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "poscookielaw" LIMIT 1 |
0.549
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:574 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 140) AND (b.`id_shop` = 1) LIMIT 1 |
0.548
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 196) AND (b.`id_shop` = 1) LIMIT 1 |
0.546
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 132) AND (b.`id_shop` = 1) LIMIT 1 |
0.545
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 136) AND (b.`id_shop` = 1) LIMIT 1 |
0.544
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 143
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.544
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 157
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.543
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 984 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 984 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.541
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 309 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "module-smartblog-list"
OR m.page = "modulesmartbloglist"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.536
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:778 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 113
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.533
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 418 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 152) AND (b.`id_shop` = 1) LIMIT 1 |
0.532
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 117
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.531
ms
|
4 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 151
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.530
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 248) AND (b.`id_shop` = 1) LIMIT 1 |
0.529
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 134
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.528
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 468 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 177) AND (b.`id_shop` = 1) LIMIT 1 |
0.527
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 527 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 206
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.526
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 404 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 145) AND (b.`id_shop` = 1) LIMIT 1 |
0.525
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 549 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 217
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.525
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 70 ORDER BY agl.`name` ASC, a.`position` ASC |
0.524
ms
|
2 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 374 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 130) AND (b.`id_shop` = 1) LIMIT 1 |
0.523
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 175
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.523
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 371 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 128
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.521
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 242) AND (b.`id_shop` = 1) LIMIT 1 |
0.519
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 377 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 131
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.518
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 395 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 140
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.518
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `id_module` FROM `myshop_module_shop` WHERE `id_module` = 116 AND `id_shop` = 1 LIMIT 1 |
0.515
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:584 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 400 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 143) AND (b.`id_shop` = 1) LIMIT 1 |
0.514
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 151) AND (b.`id_shop` = 1) LIMIT 1 |
0.514
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 178
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.512
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 259
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.512
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 144
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.510
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 128) AND (b.`id_shop` = 1) LIMIT 1 |
0.509
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 154
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.507
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 490 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 490 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.506
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 564 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 225) AND (b.`id_shop` = 1) LIMIT 1 |
0.504
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 148) AND (b.`id_shop` = 1) LIMIT 1 |
0.499
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 367 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 126
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.496
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 339 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 112
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.494
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 129
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.494
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 442 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 164) AND (b.`id_shop` = 1) LIMIT 1 |
0.494
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 ps.*
FROM myshop_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 11 LIMIT 1 |
0.493
ms
|
9 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1252 (getSubmenuConfig)
/modules/posmegamenu/posmegamenu.php:761 (generateCss)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 396 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 141) AND (b.`id_shop` = 1) LIMIT 1 |
0.491
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 155
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.490
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 129) AND (b.`id_shop` = 1) LIMIT 1 |
0.490
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_posquickmenu` pr
LEFT JOIN myshop_posquickmenu_lang prl ON (pr.id_quickmenu = prl.id_quickmenu)
WHERE prl.id_lang = "5"
AND prl.id_shop = "1"
AND pr.status = 1
ORDER BY pr.position |
0.489
ms
|
3 |
Yes
|
|
/modules/posquickmenu/classes/QuickmenuActivity.php:230
/modules/posquickmenu/posquickmenu.php:367 (getAllBlockByStatus)
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 122
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.489
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 135) AND (b.`id_shop` = 1) LIMIT 1 |
0.489
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 173 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 33 ORDER BY agl.`name` ASC, a.`position` ASC |
0.488
ms
|
3 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 456 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 171) AND (b.`id_shop` = 1) LIMIT 1 |
0.488
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 399 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 142
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.487
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 222) AND (b.`id_shop` = 1) LIMIT 1 |
0.486
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "prices-drop"
OR m.page = "pricesdrop"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.482
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:778 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 567 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 226
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.481
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 150
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.479
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 157) AND (b.`id_shop` = 1) LIMIT 1 |
0.478
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pai.`id_image`, pai.`id_product_attribute`, il.`legend`
FROM `myshop_product_attribute_image` pai
LEFT JOIN `myshop_image_lang` il ON (il.`id_image` = pai.`id_image`)
INNER JOIN `myshop_image` i ON (i.`id_image` = pai.`id_image`)
WHERE i.`id_product` = 611 AND il.`id_lang` = 5 ORDER by i.`position` |
0.477
ms
|
1 |
Yes
|
|
/classes/Product.php:2650
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 686 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 611) AND (id_product_attribute = 1906) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.472
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:2504 (getQuantityAvailableByProduct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:912 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:744 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:90 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:260 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 147
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.471
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 118) AND (b.`id_shop` = 1) LIMIT 1 |
0.470
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 426 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 156) AND (b.`id_shop` = 1) LIMIT 1 |
0.470
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 593 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 239
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.470
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 172
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.469
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 257) AND (b.`id_shop` = 1) LIMIT 1 |
0.469
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 136
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.468
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 590 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 238) AND (b.`id_shop` = 1) LIMIT 1 |
0.467
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 362 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 124) AND (b.`id_shop` = 1) LIMIT 1 |
0.464
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 385 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 135
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.463
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 131) AND (b.`id_shop` = 1) LIMIT 1 |
0.460
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 134) AND (b.`id_shop` = 1) LIMIT 1 |
0.460
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 411 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 148
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.453
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 308 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "new-products"
OR m.page = "newproducts"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.451
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:778 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 237
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.450
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 492 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 189) AND (b.`id_shop` = 1) LIMIT 1 |
0.447
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 220) AND (b.`id_shop` = 1) LIMIT 1 |
0.447
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 524 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 205) AND (b.`id_shop` = 1) LIMIT 1 |
0.446
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =984 |
0.444
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 203
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.441
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 661 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =490 AND imgs.`rotator` =1 |
0.440
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 281 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "poscompare" LIMIT 1 |
0.438
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/modules/posquickmenu/posquickmenu.php:361 (isEnabled)
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 153) AND (b.`id_shop` = 1) LIMIT 1 |
0.438
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 162) AND (b.`id_shop` = 1) LIMIT 1 |
0.438
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 120) AND (b.`id_shop` = 1) LIMIT 1 |
0.434
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_ce_template` a
WHERE (a.`id_ce_template` = 1) LIMIT 1 |
0.433
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/modules/creativeelements/creativeelements.php:603 (__construct)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 353 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 119
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.431
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 163) AND (b.`id_shop` = 1) LIMIT 1 |
0.431
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 112) AND (b.`id_shop` = 1) LIMIT 1 |
0.430
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 984 AND `id_group` = 1 LIMIT 1 |
0.430
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 538 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 212) AND (b.`id_shop` = 1) LIMIT 1 |
0.426
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 241
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.425
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "new-products"
OR m.page = "newproducts"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.423
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:826 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 105) AND (b.`id_shop` = 1) LIMIT 1 |
0.423
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 222 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 1490) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.418
ms
|
0 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 310 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "contact"
OR m.page = "contact"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.418
ms
|
1 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:778 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 255
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.417
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 cl.`link_rewrite`
FROM `myshop_category_lang` cl
WHERE `id_lang` = 5
AND cl.id_shop = 1
AND cl.`id_category` = 174 LIMIT 1 |
0.415
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 363 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 124
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.414
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 246) AND (b.`id_shop` = 1) LIMIT 1 |
0.414
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 177
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.411
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 950 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 950 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.409
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 232 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 896) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.409
ms
|
0 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 250 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 321 LIMIT 1 |
0.409
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 565 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 225
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.409
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 398 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 142) AND (b.`id_shop` = 1) LIMIT 1 |
0.406
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 238 |
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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 597 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 597 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.405
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 397 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 141
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.401
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 221 |
SELECT SQL_NO_CACHE `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 1490 AND `id_group` = 1 LIMIT 1 |
0.400
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 242 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 611) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.400
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 636 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 261) AND (b.`id_shop` = 1) LIMIT 1 |
0.399
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 185) AND (b.`id_shop` = 1) LIMIT 1 |
0.399
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 360 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 123) AND (b.`id_shop` = 1) LIMIT 1 |
0.398
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 245
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.398
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `id_module` FROM `myshop_module` WHERE `name` = "posshoppingcart" LIMIT 1 |
0.395
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/modules/posquickmenu/posquickmenu.php:364 (isEnabled)
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 208
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.392
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 257 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 490
ORDER BY `position` |
0.389
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 365 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 125
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.387
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 224) AND (b.`id_shop` = 1) LIMIT 1 |
0.383
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 570 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 228) AND (b.`id_shop` = 1) LIMIT 1 |
0.382
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 238
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.379
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 tr.*
FROM `myshop_tax_rule` tr
JOIN `myshop_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.377
ms
|
1 |
Yes
|
|
/classes/tax/TaxRulesTaxManager.php:86
/classes/Product.php:3672 (getTaxCalculator)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 390 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 138) AND (b.`id_shop` = 1) LIMIT 1 |
0.375
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 220
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.373
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `id_module` FROM `myshop_module` WHERE `name` = "posvegamenu" LIMIT 1 |
0.369
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:584 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 336 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 111) AND (b.`id_shop` = 1) LIMIT 1 |
0.367
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 93 |
SELECT SQL_NO_CACHE DISTINCT a.`id_attribute`, a.`color`, al.`name`, agl.`id_attribute_group`, IF(lialv.`url_name` IS NULL OR lialv.`url_name` = "", NULL, lialv.`url_name`) AS url_name, IF(lialv.`meta_title` IS NULL OR lialv.`meta_title` = "", NULL, lialv.`meta_title`) AS meta_title FROM `myshop_attribute_group` ag INNER JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5) INNER JOIN `myshop_attribute` a ON a.`id_attribute_group` = ag.`id_attribute_group` INNER JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5) INNER JOIN myshop_attribute_group_shop attribute_group_shop
ON (attribute_group_shop.id_attribute_group = ag.id_attribute_group AND attribute_group_shop.id_shop = 1) INNER JOIN myshop_attribute_shop attribute_shop
ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1) LEFT JOIN `myshop_layered_indexable_attribute_lang_value` lialv ON (a.`id_attribute` = lialv.`id_attribute` AND lialv.`id_lang` = 5) WHERE ag.id_attribute_group = 16 ORDER BY agl.`name` ASC, a.`position` ASC |
0.367
ms
|
3 |
Yes
|
|
/modules/ps_facetedsearch/src/Filters/DataAccessor.php:96
/modules/ps_facetedsearch/src/Filters/Block.php:731 (getAttributes)
/modules/ps_facetedsearch/src/Filters/Block.php:150 (getAttributesBlock)
/modules/ps_facetedsearch/src/Product/SearchProvider.php:218 (getFilterBlock)
/classes/controller/ProductListingFrontController.php:335 (runQuery)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 519 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 202
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.367
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 240
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.366
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 258) AND (b.`id_shop` = 1) LIMIT 1 |
0.366
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 207) AND (b.`id_shop` = 1) LIMIT 1 |
0.364
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 165) AND (b.`id_shop` = 1) LIMIT 1 |
0.364
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 125) 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/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 532 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 209) AND (b.`id_shop` = 1) LIMIT 1 |
0.360
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 120
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.359
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 150) AND (b.`id_shop` = 1) LIMIT 1 |
0.359
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 256
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.356
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 321) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.355
ms
|
0 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 366 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 126) AND (b.`id_shop` = 1) LIMIT 1 |
0.353
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 127
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.353
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 137) AND (b.`id_shop` = 1) LIMIT 1 |
0.352
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 685 |
SELECT SQL_NO_CACHE pac.id_product_attribute, GROUP_CONCAT(agl.`name`, ' - ',al.`name` ORDER BY agl.`id_attribute_group` SEPARATOR ', ') as attribute_designation
FROM `myshop_product_attribute_combination` pac
LEFT JOIN `myshop_attribute` a ON a.`id_attribute` = pac.`id_attribute`
LEFT JOIN `myshop_attribute_group` ag ON ag.`id_attribute_group` = a.`id_attribute_group`
LEFT JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
LEFT JOIN `myshop_attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5)
WHERE pac.id_product_attribute IN (1906,1908)
GROUP BY pac.id_product_attribute
ORDER BY pac.id_product_attribute |
0.351
ms
|
2 |
|
|
/classes/Product.php:2490
/src/Adapter/Presenter/Product/ProductLazyArray.php:912 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:744 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:90 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:260 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 173
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.350
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 611) AND (id_product_attribute = 1908) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.349
ms
|
1 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5585 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 557 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 221
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.349
ms
|
7 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 393 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 139
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.346
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 262 |
SELECT SQL_NO_CACHE cl.`link_rewrite`
FROM `myshop_category_lang` cl
WHERE `id_lang` = 5
AND cl.id_shop = 1
AND cl.`id_category` = 130 LIMIT 1 |
0.345
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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 380 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 133) AND (b.`id_shop` = 1) LIMIT 1 |
0.340
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 cl.`link_rewrite`
FROM `myshop_category_lang` cl
WHERE `id_lang` = 0
AND cl.id_shop = 1
AND cl.`id_category` = 161 LIMIT 1 |
0.339
ms
|
0 |
|
|
/classes/Category.php:1381
/classes/Product.php:717 (getLinkRewrite)
/src/Adapter/Presenter/Product/ProductLazyArray.php:906 (__construct)
/src/Adapter/Presenter/Product/ProductLazyArray.php:744 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:90 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:260 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 223 |
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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 1490 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 1490 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.338
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 552 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 219) AND (b.`id_shop` = 1) LIMIT 1 |
0.338
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 162
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.335
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 DISTINCT c.*
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.`id_lang` = 5)
WHERE `level_depth` = 1 |
0.334
ms
|
5 |
|
|
/classes/Category.php:2230
/classes/Category.php:1125 (getCategoriesWithoutParent)
/classes/Category.php:1577 (getRootCategory)
/modules/ps_categorytree/ps_categorytree.php:364 (getParentsCategories)
/modules/ps_categorytree/ps_categorytree.php:147 (getIdsOfCategoriesInPathToCurrentCategory)
/modules/ps_categorytree/ps_categorytree.php:298 (getCategories)
/modules/ps_categorytree/ps_categorytree.php:266 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:226 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:251 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 219
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.334
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 m.`id_module`, m.`name`, ms.`id_module`as `mshop`
FROM `myshop_module` m
LEFT JOIN `myshop_module_shop` ms
ON m.`id_module` = ms.`id_module`
AND ms.`id_shop` = 1 |
0.333
ms
|
60 |
|
|
/classes/module/Module.php:330
/modules/stripe_official/stripe_official.php:304 (__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:1381 (get)
/tools/profiling/Module.php:15 (coreLoadModule)
/classes/module/Module.php:1360 (coreLoadModule)
/classes/Hook.php:1090 (getInstanceByName)
/classes/controller/FrontController.php:205 (exec)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 550 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 218) AND (b.`id_shop` = 1) LIMIT 1 |
0.332
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 25 |
SELECT SQL_NO_CACHE `id_lang` FROM `myshop_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
0.331
ms
|
4 |
|
|
/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:222 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 375 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 130
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.330
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 611 AND `id_group` = 1 LIMIT 1 |
0.329
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 600 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 243) AND (b.`id_shop` = 1) LIMIT 1 |
0.327
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 260
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.324
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 179) AND (b.`id_shop` = 1) LIMIT 1 |
0.324
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 224
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.322
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 254
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.317
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 175) AND (b.`id_shop` = 1) LIMIT 1 |
0.315
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 257
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.315
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 203) AND (b.`id_shop` = 1) LIMIT 1 |
0.313
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 346 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 116) AND (b.`id_shop` = 1) LIMIT 1 |
0.308
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 121) AND (b.`id_shop` = 1) LIMIT 1 |
0.308
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 412 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 149) AND (b.`id_shop` = 1) LIMIT 1 |
0.304
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 653 |
SELECT SQL_NO_CACHE count(id_wishlist_product) FROM myshop_poswishlist w, myshop_poswishlist_product wp where w.id_wishlist = wp.id_wishlist and w.id_customer=0 LIMIT 1 |
0.304
ms
|
1 |
|
|
/modules/poswishlist/poswishlist.php:225
/modules/poswishlist/poswishlist.php:238 (hookdisplayNav)
/classes/Hook.php:1218 (hookdisplayMegamenuMobileBottom)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/90/dc/00/90dc0040a0e5a73c3460c03fa2191049195f9fc2_2.file.menu-mobile.tpl.php:60 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22913da04a9_28117789)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:594 (fetch)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 212
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.303
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 436 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 161) AND (b.`id_shop` = 1) LIMIT 1 |
0.302
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 344 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 115) AND (b.`id_shop` = 1) LIMIT 1 |
0.299
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 111
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.298
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 232) AND (b.`id_shop` = 1) LIMIT 1 |
0.293
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 950) |
0.292
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 424 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 155) AND (b.`id_shop` = 1) LIMIT 1 |
0.292
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 258
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.288
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 185
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.287
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 0
AND cp.`id_cart` = 0 AND cp.`id_product` = 896 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_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` = 896 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.286
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 430 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 158) AND (b.`id_shop` = 1) LIMIT 1 |
0.281
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_cart_product` cp
WHERE cp.`id_product_attribute` = 1908
AND cp.`id_cart` = 0 AND cp.`id_product` = 611 UNION SELECT 0 as first_level_quantity, SUM(cp.`quantity` * p.`quantity`) as pack_quantity
FROM `myshop_cart_product` cp JOIN `myshop_pack` p ON cp.`id_product` = p.`id_product_pack` JOIN `myshop_product` pr ON p.`id_product_pack` = pr.`id_product`
WHERE cp.`id_product_attribute` = 1908
AND cp.`id_cart` = 0 AND p.`id_product_item` = 611 AND (pr.`pack_stock_type` IN (1,2) OR (
pr.`pack_stock_type` = 3
AND 0 = 1
))) as q LIMIT 1 |
0.279
ms
|
0 |
|
|
/classes/Cart.php:1624
/classes/Product.php:4129 (getProductQuantity)
/classes/Product.php:5585 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 247 |
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 `myshop_attribute` a
LEFT JOIN `myshop_attribute_lang` al
ON (al.`id_attribute` = a.`id_attribute` AND al.`id_lang` = 5)
LEFT JOIN `myshop_product_attribute_combination` pac
ON (pac.`id_attribute` = a.`id_attribute`)
LEFT JOIN `myshop_product_attribute` pa
ON (pa.`id_product_attribute` = pac.`id_product_attribute`)
INNER JOIN myshop_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 `myshop_product_attribute_lang` pal
ON (pal.`id_product_attribute` = pac.`id_product_attribute` AND pal.`id_lang` = 5)
LEFT JOIN `myshop_attribute_group_lang` agl
ON (a.`id_attribute_group` = agl.`id_attribute_group` AND agl.`id_lang` = 5)
WHERE pa.`id_product` = 611
AND pac.`id_product_attribute` = 1908
AND agl.`id_lang` = 5 |
0.279
ms
|
1 |
|
|
/classes/Product.php:7217
/classes/Product.php:5599 (getAttributesParams)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 266 |
SELECT SQL_NO_CACHE image_shop.`cover`, i.`id_image`, il.`legend`, i.`position`
FROM `myshop_image` i
INNER JOIN myshop_image_shop image_shop
ON (image_shop.id_image = i.id_image AND image_shop.id_shop = 1)
LEFT JOIN `myshop_image_lang` il ON (i.`id_image` = il.`id_image` AND il.`id_lang` = 5)
WHERE i.`id_product` = 984
ORDER BY `position` |
0.275
ms
|
1 |
Yes
|
|
/classes/Product.php:3268
/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)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 290 |
SELECT SQL_NO_CACHE value FROM myshop_ce_meta WHERE id = 2010000 AND name = '_elementor_data' LIMIT 1 |
0.273
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:120 (CE\get_post_meta)
/modules/creativeelements/includes/db.php:350 (getPlainEditor)
/modules/creativeelements/includes/css-file/post-css-file.php:94 (isBuiltWithElementor)
/modules/creativeelements/includes/frontend.php:390 (enqueue)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 189
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.273
ms
|
4 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 194
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.272
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 432 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 159) AND (b.`id_shop` = 1) LIMIT 1 |
0.269
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 187
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.269
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 282 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 107 AND `id_shop` = 1 LIMIT 1 |
0.267
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posquickmenu/posquickmenu.php:361 (isEnabled)
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pa.*, product_attribute_shop.*
FROM `myshop_product_attribute` pa
INNER JOIN myshop_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` = 611
GROUP BY pa.`id_product_attribute`
ORDER BY pa.`id_product_attribute` |
0.266
ms
|
2 |
Yes
|
Yes
|
/classes/Product.php:2472
/src/Adapter/Presenter/Product/ProductLazyArray.php:912 (getAttributesResume)
/src/Adapter/Presenter/Product/ProductLazyArray.php:744 (shouldShowOutOfStockLabel)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getFlags)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:90 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:260 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 108
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.264
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `id_module` FROM `myshop_module_shop` WHERE `id_module` = 93 AND `id_shop` = 1 LIMIT 1 |
0.264
ms
|
1 |
|
|
/classes/module/Module.php:2262
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:226 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:251 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 count(id_wishlist_product) FROM myshop_poswishlist w, myshop_poswishlist_product wp where w.id_wishlist = wp.id_wishlist and w.id_customer=0 LIMIT 1 |
0.261
ms
|
1 |
|
|
/modules/posquickmenu/posquickmenu.php:383
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 182
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.261
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 984) |
0.259
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 566 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 226) AND (b.`id_shop` = 1) LIMIT 1 |
0.259
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 481 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 183
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.258
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 559 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 222
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.258
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 pa.`id_product`, a.`color`, pac.`id_product_attribute`, 0 qty, a.`id_attribute`, al.`name`, IF(color = "", a.id_attribute, color) group_by
FROM `myshop_product_attribute` pa
INNER JOIN myshop_product_attribute_shop product_attribute_shop
ON (product_attribute_shop.id_product_attribute = pa.id_product_attribute AND product_attribute_shop.id_shop = 1)
JOIN `myshop_product_attribute_combination` pac ON (pac.`id_product_attribute` = product_attribute_shop.`id_product_attribute`)
JOIN `myshop_attribute` a ON (a.`id_attribute` = pac.`id_attribute`)
JOIN `myshop_attribute_lang` al ON (a.`id_attribute` = al.`id_attribute` AND al.`id_lang` = 5)
JOIN `myshop_attribute_group` ag ON (a.id_attribute_group = ag.`id_attribute_group`)
WHERE pa.`id_product` IN (896) AND ag.`is_color_group` = 1
GROUP BY pa.`id_product`, a.`id_attribute`, `group_by`
ORDER BY a.`position` ASC; |
0.257
ms
|
1 |
Yes
|
Yes
|
/classes/Product.php:4292
/src/Adapter/Product/ProductColorsRetriever.php:23 (getAttributesColorList)
/src/Adapter/Presenter/Product/ProductLazyArray.php:780 (getColoredVariants)
/src/Adapter/Presenter/AbstractLazyArray.php:244 (getMainVariants)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:196 (offsetGet)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:321 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 value FROM myshop_ce_meta WHERE id = 1010000 AND name = '_elementor_data' LIMIT 1 |
0.256
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:120 (CE\get_post_meta)
/modules/creativeelements/includes/frontend.php:381 (getPlainEditor)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 260) AND (b.`id_shop` = 1) LIMIT 1 |
0.252
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 490) |
0.249
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 458 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 172) AND (b.`id_shop` = 1) 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)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 173) AND (b.`id_shop` = 1) LIMIT 1 |
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)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 299 |
SELECT SQL_NO_CACHE ps.*
FROM myshop_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 12 LIMIT 1 |
0.248
ms
|
9 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1252 (getSubmenuConfig)
/modules/posmegamenu/posmegamenu.php:761 (generateCss)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 216) AND (b.`id_shop` = 1) LIMIT 1 |
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)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 102
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.246
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 235 |
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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 597) |
0.242
ms
|
1 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 645 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "module-smartblog-list"
OR m.page = "modulesmartbloglist"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.242
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:826 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 166
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.241
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 su.physical_uri, su.virtual_uri, su.domain, su.domain_ssl
FROM myshop_shop s
LEFT JOIN myshop_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.239
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)
|
| 451 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 168
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.238
ms
|
5 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 233) AND (b.`id_shop` = 1) LIMIT 1 |
0.238
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 117) AND (b.`id_shop` = 1) LIMIT 1 |
0.235
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 value FROM myshop_ce_meta WHERE id = 1010000 AND name = '_elementor_edit_mode' LIMIT 1 |
0.235
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:200 (CE\get_post_meta)
/modules/creativeelements/includes/frontend.php:376 (getEditMode)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 value FROM myshop_ce_meta WHERE id = 1010000 AND name = '_elementor_css' LIMIT 1 |
0.234
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/css-file/post-css-file.php:60 (CE\get_post_meta)
/modules/creativeelements/includes/css-file/css-file.php:247 (loadMeta)
/modules/creativeelements/includes/css-file/css-file.php:100 (getMeta)
/modules/creativeelements/includes/css-file/post-css-file.php:98 (enqueue)
/modules/creativeelements/includes/frontend.php:390 (enqueue)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 201 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 0 LIMIT 1 |
0.233
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 457 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 171
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.232
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 284 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 119 AND `id_shop` = 1 LIMIT 1 |
0.231
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posquickmenu/posquickmenu.php:364 (isEnabled)
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 27 |
SELECT SQL_NO_CACHE c.id_currency
FROM `myshop_currency` c
WHERE (iso_code = 'EUR') LIMIT 1 |
0.228
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:222 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 513 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 199
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.228
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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_lang` FROM `myshop_lang`
WHERE `locale` = 'es-es'
OR `language_code` = 'es-es' LIMIT 1 |
0.227
ms
|
4 |
|
|
/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:222 (init)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 487 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 186
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.227
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 496 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 191) AND (b.`id_shop` = 1) LIMIT 1 |
0.227
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 195) AND (b.`id_shop` = 1) LIMIT 1 |
0.223
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 180
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.222
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =896 AND imgs.`rotator` =1 |
0.222
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 format
FROM `myshop_address_format`
WHERE `id_country` = 8 LIMIT 1 |
0.220
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:1713 (generateAddress)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 688 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =321 AND imgs.`rotator` =1 |
0.220
ms
|
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_country` a
LEFT JOIN `myshop_country_shop` `c` ON a.`id_country` = c.`id_country` AND c.`id_shop` = 1
WHERE (a.`id_country` = 8) LIMIT 1 |
0.218
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:1713 (generateAddress)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 483 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 184
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.218
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 180) AND (b.`id_shop` = 1) LIMIT 1 |
0.218
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 582 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 234) AND (b.`id_shop` = 1) LIMIT 1 |
0.215
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 235) AND (b.`id_shop` = 1) LIMIT 1 |
0.215
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 39 |
SELECT SQL_NO_CACHE * FROM `myshop_image_type` WHERE 1 AND `manufacturers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.215
ms
|
7 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 329 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 107
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.212
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 103
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.212
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 491 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 188
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.210
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 181
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.209
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 227) AND (b.`id_shop` = 1) LIMIT 1 |
0.209
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 701 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "my-account"
OR m.page = "myaccount"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.209
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posthemeoptions/elementor/src/WidgetHelper.php:873 (getMetaByPage)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:120 (getPagesOption)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 486 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 186) AND (b.`id_shop` = 1) LIMIT 1 |
0.209
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 240 |
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 `myshop_product` p
INNER JOIN `myshop_product_shop` `product_shop` ON (product_shop.id_product=p.id_product AND product_shop.id_shop = 1)
LEFT JOIN `myshop_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` = 611) |
0.208
ms
|
2 |
|
|
/classes/Product.php:3606
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 314 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 100) AND (b.`id_shop` = 1) LIMIT 1 |
0.207
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 122) AND (b.`id_shop` = 1) LIMIT 1 |
0.207
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 482 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 184) AND (b.`id_shop` = 1) LIMIT 1 |
0.207
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 105
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.205
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 209 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 490) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.204
ms
|
0 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 619 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 252
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.204
ms
|
3 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 166) AND (b.`id_shop` = 1) LIMIT 1 |
0.203
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 id_shop
FROM `myshop_group_shop`
WHERE `id_group` = 1
AND id_shop = 1 LIMIT 1 |
0.203
ms
|
1 |
|
|
/classes/ObjectModel.php:1581
/classes/Group.php:388 (isAssociatedToShop)
/classes/Cart.php:261 (getCurrent)
/classes/Cart.php:225 (setTaxCalculationMethod)
/classes/controller/FrontController.php:439 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 490 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 188) AND (b.`id_shop` = 1) LIMIT 1 |
0.201
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 523 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 204
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.201
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 198
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.200
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 200
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.199
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 210
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.198
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "index"
OR m.page = "index"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.197
ms
|
1 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:922 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:826 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 258 |
SELECT SQL_NO_CACHE * FROM `myshop_image_type` |
0.196
ms
|
7 |
|
|
/classes/ImageType.php:141
/classes/ImageType.php:182 (getByNameNType)
/src/Adapter/Image/ImageRetriever.php:197 (getFormattedName)
/src/Adapter/Image/ImageRetriever.php:82 (getImage)
:undefined (PrestaShop\PrestaShop\Adapter\Image\{closure})
/src/Adapter/Image/ImageRetriever.php:75 (array_map)
/src/Adapter/Presenter/Product/ProductLazyArray.php:934 (getAllProductImages)
/src/Adapter/Presenter/Product/ProductLazyArray.php:118 (fillImages)
/src/Adapter/Presenter/Product/ProductListingPresenter.php:38 (__construct)
/classes/controller/ProductListingFrontController.php:97 (present)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 211 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 950 LIMIT 1 |
0.195
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 571 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 228
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.195
ms
|
2 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 250) AND (b.`id_shop` = 1) LIMIT 1 |
0.195
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 703 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "new-products"
OR m.page = "newproducts"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.194
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posthemeoptions/elementor/src/WidgetHelper.php:881 (getMetaByPage)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:120 (getPagesOption)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 454 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 170) AND (b.`id_shop` = 1) LIMIT 1 |
0.193
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 896 AND `id_group` = 1 LIMIT 1 |
0.193
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 499 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 192
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.193
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 190
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.192
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 211
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.191
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 620 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 253) AND (b.`id_shop` = 1) LIMIT 1 |
0.190
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 202) AND (b.`id_shop` = 1) LIMIT 1 |
0.189
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 229
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.187
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 49 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 118 AND `id_shop` = 1 LIMIT 1 |
0.185
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posthemeoptions/posthemeoptions.php:814 (isEnabled)
/modules/posthemeoptions/posthemeoptions.php:692 (getOptions)
/classes/Hook.php:1218 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/classes/controller/FrontController.php:601 (exec)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 501 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 193
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.184
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 217) AND (b.`id_shop` = 1) LIMIT 1 |
0.184
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 230
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.184
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "prices-drop"
OR m.page = "pricesdrop"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.184
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:826 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `id_module` FROM `myshop_module_shop` WHERE `id_module` = 110 AND `id_shop` = 1 LIMIT 1 |
0.184
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:973 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 252) AND (b.`id_shop` = 1) LIMIT 1 |
0.183
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 706 |
SELECT SQL_NO_CACHE *
FROM `myshop_cms` a
LEFT JOIN `myshop_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 5
LEFT JOIN `myshop_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 4) AND (b.`id_shop` = 1) LIMIT 1 |
0.182
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Link.php:554 (__construct)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:374 (getCMSLink)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 699 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "sitemap"
OR m.page = "sitemap"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.182
ms
|
1 |
|
|
/classes/Meta.php:170
/modules/posthemeoptions/elementor/src/WidgetHelper.php:865 (getMetaByPage)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:120 (getPagesOption)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 9 |
SELECT SQL_NO_CACHE id_shop
FROM `myshop_lang_shop`
WHERE `id_lang` = 4
AND id_shop = 1 LIMIT 1 |
0.179
ms
|
1 |
|
|
/classes/ObjectModel.php:1581
/config/config.inc.php:205 (isAssociatedToShop)
/index.php:20 (require_once)
|
| 450 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 168) AND (b.`id_shop` = 1) LIMIT 1 |
0.178
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 206) AND (b.`id_shop` = 1) LIMIT 1 |
0.176
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 449 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 167
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.176
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 509 |
SELECT SQL_NO_CACHE c.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 197
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.176
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 695 |
SELECT SQL_NO_CACHE value FROM myshop_ce_meta WHERE id = 1010000 AND name = '_elementor_edit_mode' LIMIT 1 |
0.175
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/db.php:200 (CE\get_post_meta)
/modules/creativeelements/includes/db.php:351 (getEditMode)
/modules/creativeelements/includes/css-file/post-css-file.php:94 (isBuiltWithElementor)
/modules/creativeelements/includes/frontend.php:390 (enqueue)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 p.id_smart_blog_post
FROM `myshop_smart_blog_post_lang` p
WHERE p.link_rewrite = "" |
0.174
ms
|
24 |
|
|
/modules/smartblog/smartblog.php:2143
/modules/smartblog/smartblog.php:218 (slug2id)
/classes/Hook.php:1218 (hookDisplayHeader)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/classes/controller/FrontController.php:601 (exec)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 586 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 236) AND (b.`id_shop` = 1) LIMIT 1 |
0.174
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 245) AND (b.`id_shop` = 1) LIMIT 1 |
0.173
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 434 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 160) AND (b.`id_shop` = 1) LIMIT 1 |
0.173
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 190) AND (b.`id_shop` = 1) LIMIT 1 |
0.171
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 679 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img LEFT JOIN `myshop_image_shop` imgs ON img.id_image = imgs.id_image where imgs.`id_shop` =1 AND img.`id_product` =611 AND imgs.`rotator` =1 |
0.171
ms
|
3 |
|
|
/modules/posrotatorimg/posrotatorimg.php:221
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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.`id_category`, cl.`name`, cl.`link_rewrite`, category_shop.`id_shop`
FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl ON (c.`id_category` = cl.`id_category` AND cl.id_shop = 1 )
INNER JOIN myshop_category_shop category_shop
ON (category_shop.id_category = c.id_category AND category_shop.id_shop = 1)
WHERE `id_lang` = 5
AND c.`id_parent` = 205
AND `active` = 1
GROUP BY c.`id_category`
ORDER BY category_shop.`position` ASC |
0.170
ms
|
1 |
Yes
|
Yes
|
/classes/Category.php:1158
/modules/possearchproducts/possearchproducts.php:203 (getChildren)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 612 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 249) AND (b.`id_shop` = 1) LIMIT 1 |
0.169
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 182) AND (b.`id_shop` = 1) LIMIT 1 |
0.167
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 713 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 112 AND `id_shop` = 1 LIMIT 1 |
0.167
ms
|
1 |
|
|
/classes/module/Module.php:2262
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:574 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =950 |
0.166
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 199) AND (b.`id_shop` = 1) LIMIT 1 |
0.164
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 592 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 239) AND (b.`id_shop` = 1) LIMIT 1 |
0.163
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 680 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =611 |
0.162
ms
|
3 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 227 |
SELECT SQL_NO_CACHE SUM(quantity)
FROM `myshop_stock_available`
WHERE (id_product = 984) AND (id_product_attribute = 0) AND (id_shop = 1) AND (id_shop_group = 0) LIMIT 1 |
0.161
ms
|
0 |
|
|
/classes/stock/StockAvailable.php:266
/classes/Product.php:4117 (getQuantityAvailableByProduct)
/classes/Product.php:5573 (getQuantity)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 658 |
SELECT SQL_NO_CACHE c.`nleft`, c.`nright` FROM `myshop_category` c
LEFT JOIN `myshop_category_lang` cl
ON (c.`id_category` = cl.`id_category`
AND `id_lang` = 5 AND cl.id_shop = 1 ) WHERE c.`id_category` = 2 LIMIT 1 |
0.161
ms
|
1 |
|
|
/classes/Category.php:1588
/modules/ps_categorytree/ps_categorytree.php:364 (getParentsCategories)
/modules/ps_categorytree/ps_categorytree.php:147 (getIdsOfCategoriesInPathToCurrentCategory)
/modules/ps_categorytree/ps_categorytree.php:298 (getCategories)
/modules/ps_categorytree/ps_categorytree.php:266 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:226 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:251 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 value FROM myshop_ce_meta WHERE id = 2010000 AND name = '_elementor_css' LIMIT 1 |
0.159
ms
|
1 |
|
|
/modules/creativeelements/classes/wrappers/Post.php:261
/modules/creativeelements/includes/css-file/post-css-file.php:60 (CE\get_post_meta)
/modules/creativeelements/includes/css-file/css-file.php:247 (loadMeta)
/modules/creativeelements/includes/css-file/css-file.php:100 (getMeta)
/modules/creativeelements/includes/css-file/post-css-file.php:98 (enqueue)
/modules/creativeelements/includes/frontend.php:390 (enqueue)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 231) AND (b.`id_shop` = 1) LIMIT 1 |
0.159
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 646 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "contact"
OR m.page = "contact"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.159
ms
|
1 |
|
|
/classes/Meta.php:170
/modules/posmegamenu/posmegamenu.php:924 (getMetaByPage)
/modules/posmegamenu/posmegamenu.php:826 (fomartLink)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 279 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "poswishlist" LIMIT 1 |
0.157
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/modules/posquickmenu/posquickmenu.php:358 (isEnabled)
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 200) AND (b.`id_shop` = 1) LIMIT 1 |
0.156
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 704 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "best-sales"
OR m.page = "bestsales"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.156
ms
|
2 |
|
|
/classes/Meta.php:170
/modules/posthemeoptions/elementor/src/WidgetHelper.php:885 (getMetaByPage)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:120 (getPagesOption)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 707 |
SELECT SQL_NO_CACHE *
FROM `myshop_cms` a
LEFT JOIN `myshop_cms_lang` `b` ON a.`id_cms` = b.`id_cms` AND b.`id_lang` = 5
LEFT JOIN `myshop_cms_shop` `c` ON a.`id_cms` = c.`id_cms` AND c.`id_shop` = 1
WHERE (a.`id_cms` = 5) AND (b.`id_shop` = 1) LIMIT 1 |
0.156
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Link.php:554 (__construct)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:374 (getCMSLink)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 237) AND (b.`id_shop` = 1) LIMIT 1 |
0.153
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `id_module` FROM `myshop_module_shop` WHERE `id_module` = 106 AND `id_shop` = 1 LIMIT 1 |
0.151
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posquickmenu/posquickmenu.php:358 (isEnabled)
/modules/posquickmenu/posquickmenu.php:341 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:185 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:51 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_tax` a
WHERE (a.`id_tax` = 1) LIMIT 1 |
0.151
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 624 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 255) AND (b.`id_shop` = 1) LIMIT 1 |
0.147
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 700 |
SELECT SQL_NO_CACHE *
FROM myshop_meta m
LEFT JOIN myshop_meta_lang ml ON m.id_meta = ml.id_meta
WHERE (
m.page = "stores"
OR m.page = "stores"
)
AND ml.id_lang = 5
AND ml.id_shop = 1 LIMIT 1 |
0.147
ms
|
1 |
|
|
/classes/Meta.php:170
/modules/posthemeoptions/elementor/src/WidgetHelper.php:869 (getMetaByPage)
/modules/posthemeoptions/elementor/widgets/PosLinksWidget.php:120 (getPagesOption)
/modules/creativeelements/includes/base/controls-stack.php:468 (_registerControls)
/modules/creativeelements/includes/base/controls-stack.php:72 (_initControls)
/modules/creativeelements/includes/base/controls-stack.php:437 (getControls)
/modules/creativeelements/includes/base/controls-stack.php:477 (_getParsedSettings)
/modules/creativeelements/includes/base/controls-stack.php:483 (_init)
/modules/creativeelements/includes/base/element-base.php:460 (__construct)
/modules/creativeelements/includes/base/widget-base.php:58 (__construct)
/modules/posthemeoptions/elementor/src/WidgetHelper.php:53 (__construct)
/modules/creativeelements/includes/managers/elements.php:56 (__construct)
/modules/creativeelements/includes/base/element-base.php:193 (createElementInstance)
/modules/creativeelements/includes/base/element-base.php:454 (addChild)
/modules/creativeelements/includes/base/element-base.php:156 (_initChildren)
/modules/creativeelements/includes/elements/column.php:535 (getChildren)
/modules/creativeelements/includes/base/element-base.php:265 (beforeRender)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 448 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 167) AND (b.`id_shop` = 1) LIMIT 1 |
0.147
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =1490 |
0.146
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 476 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 181) AND (b.`id_shop` = 1) LIMIT 1 |
0.145
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 230) AND (b.`id_shop` = 1) LIMIT 1 |
0.144
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `id_module` FROM `myshop_module_shop` WHERE `id_module` = 115 AND `id_shop` = 1 LIMIT 1 |
0.143
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:565 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_product_attribute` a
LEFT JOIN `myshop_product_attribute_shop` `c` ON a.`id_product_attribute` = c.`id_product_attribute` AND c.`id_shop` = 1
WHERE (a.`id_product_attribute` = 1908) LIMIT 1 |
0.143
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 304 |
SELECT SQL_NO_CACHE ps.*
FROM myshop_posmegamenu_submenu ps
WHERE ps.id_posmegamenu_item = 1 AND ps.`active` = 1 LIMIT 1 |
0.143
ms
|
9 |
|
|
/modules/posmegamenu/posmegamenu.php:477
/modules/posmegamenu/posmegamenu.php:728 (getSubmenuInfo)
/modules/posmegamenu/posmegamenu.php:784 (getSubMenu)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 542 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 214) AND (b.`id_shop` = 1) LIMIT 1 |
0.142
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 169) AND (b.`id_shop` = 1) LIMIT 1 |
0.140
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 ps.*
FROM myshop_posmegamenu_submenu ps
WHERE ps.id_posmegamenu_item = 1 AND ps.`active` = 1 LIMIT 1 |
0.140
ms
|
9 |
|
|
/modules/posmegamenu/posmegamenu.php:477
/modules/posmegamenu/posmegamenu.php:728 (getSubmenuInfo)
/modules/posmegamenu/posmegamenu.php:832 (getSubMenu)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 202 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 490 LIMIT 1 |
0.138
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 31 |
SELECT SQL_NO_CACHE *
FROM `myshop_currency_lang`
WHERE `id_currency` = 1 |
0.137
ms
|
5 |
|
|
/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:688 (getCurrencyInstance)
/classes/controller/FrontController.php:331 (setCurrency)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 40 |
SELECT SQL_NO_CACHE * FROM `myshop_image_type` WHERE 1 AND `suppliers` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.137
ms
|
7 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 500 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 193) AND (b.`id_shop` = 1) LIMIT 1 |
0.137
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 194) AND (b.`id_shop` = 1) LIMIT 1 |
0.137
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 516 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 201) AND (b.`id_shop` = 1) LIMIT 1 |
0.136
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 `myshop_image_type` WHERE 1 AND `products` = 1 ORDER BY `width` DESC, `height` DESC, `name`ASC |
0.135
ms
|
7 |
Yes
|
|
/classes/ImageType.php:89
/src/Adapter/Image/ImageRetriever.php:349 (getImagesTypes)
/classes/controller/FrontController.php:1541 (getNoPictureImage)
/classes/controller/FrontController.php:1693 (getTemplateVarUrls)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 540 |
SELECT SQL_NO_CACHE *
FROM `myshop_category` a
LEFT JOIN `myshop_category_lang` `b` ON a.`id_category` = b.`id_category` AND b.`id_lang` = 5
LEFT JOIN `myshop_category_shop` `c` ON a.`id_category` = c.`id_category` AND c.`id_shop` = 1
WHERE (a.`id_category` = 213) AND (b.`id_shop` = 1) LIMIT 1 |
0.135
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Category.php:159 (__construct)
/override/classes/Category.php:25 (__construct)
/modules/possearchproducts/possearchproducts.php:198 (__construct)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:213 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:180 (getCategoryOption)
/modules/possearchproducts/possearchproducts.php:191 (getWidgetVariables)
/modules/posthemeoptions/elementor/widgets/PosHeaderSearchWidget.php:987 (renderWidget)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_tax_lang`
WHERE `id_tax` = 1 |
0.134
ms
|
5 |
|
|
/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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 711 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 90 AND `id_shop` = 1 LIMIT 1 |
0.133
ms
|
1 |
|
|
/classes/module/Module.php:2262
/modules/posthemeoptions/elementor/widgets/PosNewsletterWidget.php:609 (isEnabled)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/73/f6/5b/73f65ba335813014b5371f5e391888424adf345d_2.file.footer.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464636090_44032328)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:525 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 47 |
SELECT SQL_NO_CACHE id_required_field, object_name, field_name
FROM myshop_required_field |
0.130
ms
|
1 |
|
|
/classes/ObjectModel.php:1446
/classes/ObjectModel.php:1478 (getFieldsRequiredDatabase)
/classes/ObjectModel.php:1409 (cacheFieldsRequiredDatabase)
/classes/controller/FrontController.php:538 (validateFieldsRequiredDatabase)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 689 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =321 |
0.128
ms
|
2 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 12 |
SELECT SQL_NO_CACHE `id_lang` FROM `myshop_lang` WHERE `iso_code` = 'es' LIMIT 1 |
0.126
ms
|
4 |
|
|
/classes/Language.php:824
/classes/Tools.php:615 (getIdByIso)
/classes/Dispatcher.php:226 (switchLanguage)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 249 |
SELECT SQL_NO_CACHE *
FROM `myshop_product_attribute_lang`
WHERE `id_product_attribute` = 1908 |
0.125
ms
|
5 |
|
|
/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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 229 |
SELECT SQL_NO_CACHE 1 FROM `myshop_specific_price` WHERE id_product = 896 LIMIT 1 |
0.125
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)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 46 |
SELECT SQL_NO_CACHE *
FROM `myshop_country_lang`
WHERE `id_country` = 8 |
0.124
ms
|
5 |
|
|
/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:1713 (generateAddress)
/classes/controller/FrontController.php:534 (getTemplateVarShop)
/classes/controller/FrontController.php:597 (assignGeneralPurposeVariables)
/controllers/front/listing/NewProductsController.php:32 (initContent)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 13 |
SELECT SQL_NO_CACHE *
FROM `myshop_lang` a
LEFT JOIN `myshop_lang_shop` `c` ON a.`id_lang` = c.`id_lang` AND c.`id_shop` = 1
WHERE (a.`id_lang` = 5) LIMIT 1 |
0.119
ms
|
1 |
|
|
/src/Adapter/EntityMapper.php:54
/classes/ObjectModel.php:197 (load)
/tools/profiling/ObjectModel.php:12 (__construct)
/classes/Tools.php:639 (__construct)
/classes/Dispatcher.php:226 (switchLanguage)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 300 |
SELECT SQL_NO_CACHE ps.*
FROM myshop_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 13 LIMIT 1 |
0.115
ms
|
9 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1252 (getSubmenuConfig)
/modules/posmegamenu/posmegamenu.php:761 (generateCss)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 *
FROM `myshop_group_lang`
WHERE `id_group` = 1 |
0.114
ms
|
5 |
|
|
/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:261 (getCurrent)
/classes/Cart.php:225 (setTaxCalculationMethod)
/classes/controller/FrontController.php:439 (__construct)
/tools/profiling/Controller.php:26 (init)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 651 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module` WHERE `name` = "ps_currencyselector" LIMIT 1 |
0.113
ms
|
1 |
|
|
/classes/module/Module.php:2773
/classes/module/Module.php:2261 (getModuleIdByName)
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/90/dc/00/90dc0040a0e5a73c3460c03fa2191049195f9fc2_2.file.menu-mobile.tpl.php:60 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22913da04a9_28117789)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:594 (fetch)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 677 |
SELECT SQL_NO_CACHE * FROM `myshop_image` img where img.`rotator` =1 AND img.`id_product` =597 |
0.113
ms
|
1 |
|
|
/modules/posrotatorimg/posrotatorimg.php:226
/classes/Hook.php:1218 (hookRotatorImg)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:52 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:250 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5f/18/af/5f18af0aef7e06fe3a928f6da2e383d8a9726c97_2.file.grid1.tpl.php:28 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645a9973_23095235)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/d7/49/99/d74999baebd7911a6b4e0816f96af97ab2fb1b86_2.file.product.tpl.php:31 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22464599340_33183816)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:384 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b7/16/86/b7168625e632204c23f267d80b652a08023f2542_2.file.productlist.tpl.php:47 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224645947e6_94124361)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/75/36/9e/75369e1baf8fc0886a560985c2b4cf316cb47cc9_2.file.products.tpl.php:33 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246458f815_51761305)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:80 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:131 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:210 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:105 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 s.id_shop, s.id_shop_group FROM myshop_shop s |
0.111
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:1081 (register)
/classes/controller/FrontController.php:945 (registerStylesheet)
/tools/profiling/Controller.php:33 (setMedia)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 650 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 77 AND `id_shop` = 1 LIMIT 1 |
0.111
ms
|
1 |
|
|
/classes/module/Module.php:2262
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/90/dc/00/90dc0040a0e5a73c3460c03fa2191049195f9fc2_2.file.menu-mobile.tpl.php:60 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22913da04a9_28117789)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:594 (fetch)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 sr.*
FROM myshop_posmegamenu_submenu_row sr
WHERE sr.id_posmegamenu_item = 1 AND sr.`active` = 1 ORDER BY sr.position ASC |
0.108
ms
|
1 |
Yes
|
|
/modules/posmegamenu/posmegamenu.php:489
/modules/posmegamenu/posmegamenu.php:729 (getRowInfo)
/modules/posmegamenu/posmegamenu.php:784 (getSubMenu)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 715 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 111 AND `id_shop` = 1 LIMIT 1 |
0.107
ms
|
1 |
|
|
/classes/module/Module.php:2262
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:574 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:147 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 252 |
SELECT SQL_NO_CACHE `reduction`
FROM `myshop_product_group_reduction_cache`
WHERE `id_product` = 321 AND `id_group` = 1 LIMIT 1 |
0.100
ms
|
0 |
|
|
/classes/GroupReduction.php:129
/classes/Product.php:3736 (getValueForProduct)
/classes/Product.php:3463 (priceCalculation)
/classes/Product.php:5463 (getPriceStatic)
/classes/ProductAssembler.php:197 (getProductProperties)
/classes/controller/ProductListingFrontController.php:86 (assembleProducts)
/classes/controller/ProductListingFrontController.php:357 (prepareMultipleProductsForTemplate)
/classes/controller/ProductListingFrontController.php:630 (getProductSearchVariables)
/controllers/front/listing/NewProductsController.php:34 (doProductSearch)
/tools/profiling/Controller.php:45 (initContent)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 641 |
SELECT SQL_NO_CACHE sr.*
FROM myshop_posmegamenu_submenu_row sr
WHERE sr.id_posmegamenu_item = 1 AND sr.`active` = 1 ORDER BY sr.position ASC |
0.100
ms
|
1 |
Yes
|
|
/modules/posmegamenu/posmegamenu.php:489
/modules/posmegamenu/posmegamenu.php:729 (getRowInfo)
/modules/posmegamenu/posmegamenu.php:832 (getSubMenu)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 301 |
SELECT SQL_NO_CACHE ps.*
FROM myshop_posmegamenu_submenu ps
WHERE ps.`id_posmegamenu_item` = 14 LIMIT 1 |
0.095
ms
|
9 |
|
|
/modules/posmegamenu/classes/PosMegamenuSubmenuClass.php:88
/modules/posmegamenu/posmegamenu.php:1252 (getSubmenuConfig)
/modules/posmegamenu/posmegamenu.php:761 (generateCss)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:567 (hookDisplayMegamenu)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 c.`nleft`, c.`nright` FROM `myshop_category` c
WHERE c.`id_category` = 2 LIMIT 1 |
0.088
ms
|
1 |
|
|
/classes/Category.php:1594
/modules/ps_categorytree/ps_categorytree.php:364 (getParentsCategories)
/modules/ps_categorytree/ps_categorytree.php:147 (getIdsOfCategoriesInPathToCurrentCategory)
/modules/ps_categorytree/ps_categorytree.php:298 (getCategories)
/modules/ps_categorytree/ps_categorytree.php:266 (getWidgetVariables)
/classes/Hook.php:1229 (renderWidget)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:226 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/5a/7e/5e/5a7e5e3195da7b409f17174d40dbb82147ecde72_2.file.left_column.tpl.php:251 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:186 (process)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:101 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|
| 14 |
SELECT SQL_NO_CACHE id_shop
FROM `myshop_lang_shop`
WHERE `id_lang` = 5
AND id_shop = 1 LIMIT 1 |
0.087
ms
|
1 |
|
|
/classes/ObjectModel.php:1581
/classes/Tools.php:640 (isAssociatedToShop)
/classes/Dispatcher.php:226 (switchLanguage)
/classes/Dispatcher.php:195 (__construct)
/index.php:66 (getInstance)
|
| 652 |
SELECT SQL_NO_CACHE `id_module` FROM `myshop_module_shop` WHERE `id_module` = 78 AND `id_shop` = 1 LIMIT 1 |
0.085
ms
|
1 |
|
|
/classes/module/Module.php:2262
/classes/Hook.php:1224 (isEnabled)
/tools/profiling/Hook.php:44 (coreRenderWidget)
/classes/Hook.php:1158 (coreRenderWidget)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/90/dc/00/90dc0040a0e5a73c3460c03fa2191049195f9fc2_2.file.menu-mobile.tpl.php:60 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e22913da04a9_28117789)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:594 (fetch)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (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 sr.*
FROM myshop_posmegamenu_submenu_row sr
WHERE sr.id_posmegamenu_item = 1 AND sr.`active` = 1 ORDER BY sr.position ASC |
0.081
ms
|
1 |
Yes
|
|
/modules/posmegamenu/posmegamenu.php:489
/modules/posmegamenu/posmegamenu.php:729 (getRowInfo)
/modules/posmegamenu/posmegamenu.php:832 (getSubMenu)
/modules/posthemeoptions/elementor/widgets/PosHeaderMenuWidget.php:582 (hookDisplayMegamenuMobile)
/modules/creativeelements/includes/base/widget-base.php:207 (render)
/modules/creativeelements/includes/base/widget-base.php:274 (renderContent)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/base/element-base.php:410 (printElement)
/modules/creativeelements/includes/base/element-base.php:267 (_printContent)
/modules/creativeelements/includes/frontend.php:66 (printElement)
/modules/creativeelements/includes/frontend.php:407 (_printElements)
/modules/creativeelements/includes/frontend.php:358 (getBuilderContent)
:undefined (applyBuilderInContent)
/modules/creativeelements/classes/wrappers/Helper.php:274 (call_user_func_array)
/modules/creativeelements/creativeelements.php:608 (CE\apply_filters)
/classes/Hook.php:1218 (hookCETemplate)
/tools/profiling/Hook.php:15 (coreCallHook)
/classes/Hook.php:434 (coreCallHook)
/classes/Hook.php:1110 (callHookOn)
/config/smarty.config.inc.php:193 (exec)
/classes/Smarty/SmartyLazyRegister.php:61 (smartyHook)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a2/88/89/a28889f15aeb351e5fa225ff4f61acec6b7644f2_2.file.header.tpl.php:28 (__call)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e2246453aeb5_26864027)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:221 (_subTemplateRender)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:248 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:184 (callBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:156 (process)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/a3/70/b8/a370b8d4f469db3369076fc3d4710f4883e80f5f_2.file.layout-both-columns.tpl.php:63 (instanceBlock)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644da166_48273461)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/b1/5a/0a/b15a0af88b4b6187a521dd2ed2e5f0dade470c79_2.file.layout-left-column.tpl.php:38 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644c5778_60204841)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/16/8a/d3/168ad37b05f2a0806f1d91875d88737871803a50_2.file.product-list.tpl.php:56 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b99d7_38795363)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:386 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_runtime_inheritance.php:116 (_subTemplateRender)
/var/cache/dev/smarty/compile/theme_optimalayouts_layout_left_column_tpl/e0/9e/48/e09e4847e10d29f2bbbb406cbc4e3d880996c3a4_2.file.new-products.tpl.php:28 (endChild)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_resource_base.php:123 (content_69e224644b0097_14394544)
/vendor/smarty/smarty/libs/sysplugins/smarty_template_compiled.php:114 (getRenderedTemplateCode)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:217 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:238 (render)
/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php:116 (_execute)
/classes/Smarty/SmartyDev.php:20 (fetch)
/classes/controller/FrontController.php:737 (fetch)
/classes/controller/FrontController.php:721 (smartyOutputContent)
/tools/profiling/Controller.php:91 (display)
/tools/profiling/Controller.php:68 (displayProfiling)
/classes/Dispatcher.php:468 (run)
/index.php:66 (dispatch)
|