From 105d2cb210e491b576210058a441c129b9fd0bdf Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Fri, 22 Sep 2023 10:30:33 +0200 Subject: [PATCH 01/23] Document use_parent_assets --- themes/getting-started/theme-yml.md | 37 +++++++++++++++++++ .../parent-child-feature.md | 4 ++ 2 files changed, 41 insertions(+) diff --git a/themes/getting-started/theme-yml.md b/themes/getting-started/theme-yml.md index 4af27e329c..5278ea6a19 100644 --- a/themes/getting-started/theme-yml.md +++ b/themes/getting-started/theme-yml.md @@ -34,6 +34,43 @@ Users will be able to choose the layout for each page from the theme's settings description: Great for CMS pages to show advertisements on the side ``` +## Parent / child settings + +{{% notice note %}} +Find mode informations about [Theming inheritance - Parent/child themes]({{}}) +{{% /notice %}} + +To set the parent theme, set the parent key to the theme's name: + +```yaml +parent: classic +``` + +### use_parent_assets + +From {{< minver v="8.0" >}} , the setting `use_parent_assets` is functional. + +```yaml +assets: + use_parent_assets: true +``` + +When set to `true`, some additional variables are changed through `Smarty`. + +- `theme_assets` is replaced with the parent theme assets URI, +- `img_url`, `css_url`, `js_url` are replaced also with the parent theme corresponding URIs, + +And some other variables are created: + +- `child_theme_assets` which is the child theme assets URI, +- `child_img_url`, `child_css_url`, `child_js_url` which are the child theme corresponding URIs. + +When set to `false`, only `theme_assets`, `img_url`, `css_url` and `js_url` are available, and are the child theme corresponding URIs. + +{{% notice note %}} +To maintain the behavior of {{< minver v="1.7">}} and load the child theme's assets, `use_parent_assets` must be set to `false`. +{{% /notice %}} + ## Global settings ### Configuration diff --git a/themes/reference/template-inheritance/parent-child-feature.md b/themes/reference/template-inheritance/parent-child-feature.md index 38d0f0fe66..a934d2efa4 100644 --- a/themes/reference/template-inheritance/parent-child-feature.md +++ b/themes/reference/template-inheritance/parent-child-feature.md @@ -51,6 +51,10 @@ assets: use_parent_assets: true ``` +{{% notice note %}} +Find mode informations about [`use_parent_assets` behavior here]({{}}) +{{% /notice %}} + Go ahead, select this theme in your backoffice and you're all set. ### Overriding templates From f8abba0396bb169ca08e376afb5ec3bf0e89d49f Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Fri, 22 Sep 2023 10:31:10 +0200 Subject: [PATCH 02/23] Document use_parent_assets --- modules/core-updates/8.0.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/core-updates/8.0.md b/modules/core-updates/8.0.md index 9b2099f91f..677ff8dc9a 100644 --- a/modules/core-updates/8.0.md +++ b/modules/core-updates/8.0.md @@ -59,6 +59,8 @@ The `use_parent_assets` setting in `theme.yml`, when set to `true`, makes the ch To maintain the behavior of 1.7 and load the child theme's assets, `use_parent_assets` must be set to `false`. +[More details in the theme.yml reference page]({{}}). + #### Classic theme * In `checkout/_partials/steps/payment.tpl`, the ID `payment-form` has [been changed](https://github.com/PrestaShop/PrestaShop/pull/25069) to `payment-{$option.id}-form`. From da91e0c0ccbba00b8a7e5ae2b00461b300e024bf Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Fri, 22 Sep 2023 10:57:39 +0200 Subject: [PATCH 03/23] Add tip regarding services --- modules/concepts/services/_index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/concepts/services/_index.md b/modules/concepts/services/_index.md index 2cfa6a8b62..d00a3f366a 100644 --- a/modules/concepts/services/_index.md +++ b/modules/concepts/services/_index.md @@ -117,6 +117,18 @@ If you need more details about dependency injection and how services work in the their documentation about the [Service Container](https://symfony.com/doc/4.4/service_container.html). {{% /notice %}} +##### Exclude index.php files when adding wildcard resource + +When adding resources to your module namespace, with a wildcard, exclude all `index.php` files (used for security, redirecting to FO). + +```yaml + your_company.your_module: + resource: '../src/*' + exclude: + - '../src/index.php' + - '../src/*/index.php' +``` + ### Override an existing Symfony service The container definition can be modified by a module, which enables you to override an existing Symfony service being used in PrestaShop. From 47386c1034e5a801763b8da0640b342e6b7e3db9 Mon Sep 17 00:00:00 2001 From: Leemy Pakvn <3759923+leemyongpakvn@users.noreply.github.com> Date: Sat, 23 Sep 2023 17:43:28 +0700 Subject: [PATCH 04/23] No need ../ in _index.md page --- basics/installation/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basics/installation/_index.md b/basics/installation/_index.md index 4fb7135c88..b100fed952 100644 --- a/basics/installation/_index.md +++ b/basics/installation/_index.md @@ -155,7 +155,7 @@ PrestaShop comes in two "flavors": - **Release package**. A zip package, tuned for production environments. - **Development version**. The raw source code as it is on the GitHub repository, including automated test suites, build scripts and source codes for assets that are otherwise compiled (like javascript and css files). -![Download files](../img/Prestashop_1.7.8.6_release.png) +![Download files](img/Prestashop_1.7.8.6_release.png) {{% notice tip %}} **Prefer cloning the repository using git for the development version.** From 60b6b83e46e7b76585e544c3b2166c83a402429e Mon Sep 17 00:00:00 2001 From: Krystian Podemski Date: Mon, 25 Sep 2023 14:28:03 +0200 Subject: [PATCH 05/23] Update modules/concepts/services/_index.md --- modules/concepts/services/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/concepts/services/_index.md b/modules/concepts/services/_index.md index d00a3f366a..3703df0070 100644 --- a/modules/concepts/services/_index.md +++ b/modules/concepts/services/_index.md @@ -119,7 +119,7 @@ their documentation about the [Service Container](https://symfony.com/doc/4.4/se ##### Exclude index.php files when adding wildcard resource -When adding resources to your module namespace, with a wildcard, exclude all `index.php` files (used for security, redirecting to FO). +When adding resources with a wildcard to your module namespace, make sure to exclude all `index.php` files (this file is used for security; it is redirecting to FO to prevent reading from the directory). If you don't do it, you might be redirected whenever you open your shop. ```yaml your_company.your_module: From 33d74aa979ef0e455387b33de92957ca9ebc3f51 Mon Sep 17 00:00:00 2001 From: Thomas NARES Date: Tue, 26 Sep 2023 08:20:10 +0200 Subject: [PATCH 06/23] Apply suggestions from code review Co-authored-by: Krystian Podemski --- themes/getting-started/theme-yml.md | 10 +++++----- .../template-inheritance/parent-child-feature.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/themes/getting-started/theme-yml.md b/themes/getting-started/theme-yml.md index 5278ea6a19..49b7fe6528 100644 --- a/themes/getting-started/theme-yml.md +++ b/themes/getting-started/theme-yml.md @@ -37,7 +37,7 @@ Users will be able to choose the layout for each page from the theme's settings ## Parent / child settings {{% notice note %}} -Find mode informations about [Theming inheritance - Parent/child themes]({{}}) +Find more information about [Theming inheritance - Parent/child themes]({{}}) {{% /notice %}} To set the parent theme, set the parent key to the theme's name: @@ -48,19 +48,19 @@ parent: classic ### use_parent_assets -From {{< minver v="8.0" >}} , the setting `use_parent_assets` is functional. +Starting from {{< minver v="8.0" >}} , the setting `use_parent_assets` is now fully working and correctly loads assets from the parent theme. ```yaml assets: use_parent_assets: true ``` -When set to `true`, some additional variables are changed through `Smarty`. +When set to `true`, some additional variables are changed for `Smarty` templates. - `theme_assets` is replaced with the parent theme assets URI, -- `img_url`, `css_url`, `js_url` are replaced also with the parent theme corresponding URIs, +- `img_url`, `css_url`, `js_url` are replaced with the parent theme corresponding URIs, -And some other variables are created: +some other variables are available: - `child_theme_assets` which is the child theme assets URI, - `child_img_url`, `child_css_url`, `child_js_url` which are the child theme corresponding URIs. diff --git a/themes/reference/template-inheritance/parent-child-feature.md b/themes/reference/template-inheritance/parent-child-feature.md index a934d2efa4..dc90748a6b 100644 --- a/themes/reference/template-inheritance/parent-child-feature.md +++ b/themes/reference/template-inheritance/parent-child-feature.md @@ -52,7 +52,7 @@ assets: ``` {{% notice note %}} -Find mode informations about [`use_parent_assets` behavior here]({{}}) +Find more information about [`use_parent_assets` behavior here]({{}}) {{% /notice %}} Go ahead, select this theme in your backoffice and you're all set. From cd6aaa379c789986a198dd9ee734d9c9be1bb3fa Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 26 Sep 2023 16:49:46 +0200 Subject: [PATCH 07/23] Make hook alias a title and paragraph for better search --- modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md | 3 ++- .../concepts/hooks/list-of-hooks/actionAttributeDelete.md | 3 ++- .../hooks/list-of-hooks/actionAttributeGroupDelete.md | 3 ++- .../concepts/hooks/list-of-hooks/actionAttributeGroupSave.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionAttributeSave.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionAuthentication.md | 3 ++- .../hooks/list-of-hooks/actionAuthenticationBefore.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionCartSave.md | 3 ++- .../hooks/list-of-hooks/actionCartUpdateQuantityBefore.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md | 3 ++- .../concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionFeatureSave.md | 3 ++- .../concepts/hooks/list-of-hooks/actionFeatureValueDelete.md | 3 ++- .../concepts/hooks/list-of-hooks/actionFeatureValueSave.md | 3 ++- .../hooks/list-of-hooks/actionFrontControllerInitAfter.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionOrderReturn.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md | 3 ++- .../hooks/list-of-hooks/actionOrderStatusPostUpdate.md | 3 ++- .../concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md | 3 ++- .../hooks/list-of-hooks/actionPaymentConfirmation.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionProductAdd.md | 3 ++- .../hooks/list-of-hooks/actionProductAttributeDelete.md | 3 ++- .../hooks/list-of-hooks/actionProductAttributeUpdate.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionProductCancel.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionProductDelete.md | 3 ++- .../concepts/hooks/list-of-hooks/actionProductOutOfStock.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionProductSave.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionProductUpdate.md | 3 ++- .../hooks/list-of-hooks/actionSubmitAccountBefore.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionValidateOrder.md | 3 ++- modules/concepts/hooks/list-of-hooks/actionWatermark.md | 3 ++- .../concepts/hooks/list-of-hooks/displayAdminCustomers.md | 3 ++- .../hooks/list-of-hooks/displayAdminGridTableAfter.md | 3 ++- .../hooks/list-of-hooks/displayAdminGridTableBefore.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayAdminOrder.md | 3 ++- .../concepts/hooks/list-of-hooks/displayAdminOrderSide.md | 3 ++- .../concepts/hooks/list-of-hooks/displayAdminStatsModules.md | 3 ++- .../concepts/hooks/list-of-hooks/displayBackOfficeHeader.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md | 3 ++- .../concepts/hooks/list-of-hooks/displayCustomerAccount.md | 3 ++- .../hooks/list-of-hooks/displayCustomerAccountForm.md | 3 ++- .../hooks/list-of-hooks/displayCustomerAccountFormTop.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayFeatureForm.md | 3 ++- .../hooks/list-of-hooks/displayFeaturePostProcess.md | 3 ++- .../hooks/list-of-hooks/displayFeatureValuePostProcess.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayFooter.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayFooterProduct.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayHeader.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayHome.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayLeftColumn.md | 3 ++- .../concepts/hooks/list-of-hooks/displayLeftColumnProduct.md | 3 ++- .../concepts/hooks/list-of-hooks/displayMyAccountBlock.md | 3 ++- .../concepts/hooks/list-of-hooks/displayOrderConfirmation.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayOrderDetail.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayPaymentTop.md | 3 ++- .../hooks/list-of-hooks/displayProductAdditionalInfo.md | 5 ++--- modules/concepts/hooks/list-of-hooks/displayRightColumn.md | 3 ++- .../hooks/list-of-hooks/displayRightColumnProduct.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayShoppingCart.md | 3 ++- .../hooks/list-of-hooks/displayShoppingCartFooter.md | 3 ++- modules/concepts/hooks/list-of-hooks/displayTop.md | 3 ++- 72 files changed, 144 insertions(+), 74 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md index 55ff27cb54..f1ccf90807 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAdminMetaSave -Aliases: +## Aliases +: - afterSaveAdminMeta diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index 26679989e5..f32481e3e7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAjaxDieBefore -Aliases: +## Aliases +: - actionBeforeAjaxDie diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md index 17978b2496..ceb264f7af 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAttributeDelete -Aliases: +## Aliases +: - afterDeleteAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md index ae85c51c28..6729c1e909 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAttributeGroupDelete -Aliases: +## Aliases +: - afterDeleteAttributeGroup diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md index 96e832b573..9c5e89c09b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAttributeGroupSave -Aliases: +## Aliases +: - afterSaveAttributeGroup diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md index d242bbfce6..baca84883c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAttributeSave -Aliases: +## Aliases +: - afterSaveAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md index 130ac7ca8d..4ea917e203 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAuthentication -Aliases: +## Aliases +: - authentication diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md index db6abba20c..6969531d4e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionAuthenticationBefore -Aliases: +## Aliases +: - actionBeforeAuthentication diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md index bd4f9c6d61..79ccde2ff0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCarrierProcess -Aliases: +## Aliases +: - processCarrier diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md index 26f11eb5b7..bae817d2aa 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCarrierUpdate -Aliases: +## Aliases +: - updateCarrier diff --git a/modules/concepts/hooks/list-of-hooks/actionCartSave.md b/modules/concepts/hooks/list-of-hooks/actionCartSave.md index c1af317b3f..6d702329f3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartSave.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCartSave -Aliases: +## Aliases +: - cart diff --git a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md index 1b06fa1a3b..2367e44346 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCartUpdateQuantityBefore -Aliases: +## Aliases +: - actionBeforeCartUpdateQty diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md index a5986b8434..0c0970f3db 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCategoryAdd -Aliases: +## Aliases +: - categoryAddition diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md index d1af1b50fe..143275d557 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCategoryDelete -Aliases: +## Aliases +: - categoryDeletion diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md index 3b59680021..71e7a2cb06 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCategoryUpdate -Aliases: +## Aliases +: - categoryUpdate diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md index 0991258ac8..cfc9258d96 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionCustomerAccountAdd -Aliases: +## Aliases +: - createAccount diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md index 43cd1025e8..e47bf4224d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionFeatureDelete -Aliases: +## Aliases +: - afterDeleteFeature diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md index 5f62ab661a..39119acf3d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionFeatureSave -Aliases: +## Aliases +: - afterSaveFeature diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md index f22d9980f4..42c82787a0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionFeatureValueDelete -Aliases: +## Aliases +: - afterDeleteFeatureValue diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md index cf44b0ba6d..2e4d042e4c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionFeatureValueSave -Aliases: +## Aliases +: - afterSaveFeatureValue diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md index 7ce778a152..1d9a1e3983 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionFrontControllerInitAfter -Aliases: +## Aliases +: - actionFrontControllerAfterInit diff --git a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md index d994e85d75..cf4064a450 100644 --- a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md +++ b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionHtaccessCreate -Aliases: +## Aliases +: - afterCreateHtaccess diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md index 84772e13b2..eb60c78eab 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionOrderReturn -Aliases: +## Aliases +: - orderReturn diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md index ccb40bc64b..d3021eeb27 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionOrderSlipAdd -Aliases: +## Aliases +: - orderSlip diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md index 03b5680f95..c65b863635 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionOrderStatusPostUpdate -Aliases: +## Aliases +: - postUpdateOrderStatus diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md index e900109a32..b907b1f12b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionOrderStatusUpdate -Aliases: +## Aliases +: - updateOrderStatus diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md index 3a7db15490..adb3e43958 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionPaymentCCAdd -Aliases: +## Aliases +: - paymentCCAdded diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md index 610202c10b..0a3115c43f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionPaymentConfirmation -Aliases: +## Aliases +: - paymentConfirm diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md index a5bd07b5f6..75f7960b71 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductAdd -Aliases: +## Aliases +: - addproduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md index a8686ac004..372cbc36c4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductAttributeDelete -Aliases: +## Aliases +: - deleteProductAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md index 970663ccf5..95236ae558 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductAttributeUpdate -Aliases: +## Aliases +: - updateProductAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md index 7cf078a008..3d2fc84eb4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductCancel -Aliases: +## Aliases +: - cancelProduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md index c284e71156..ba8b466744 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductDelete -Aliases: +## Aliases +: - deleteproduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md index 261ca8eda2..7b643a61d9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductOutOfStock -Aliases: +## Aliases +: - productOutOfStock diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSave.md b/modules/concepts/hooks/list-of-hooks/actionProductSave.md index facc4c7c24..49cee0f9cc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSave.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductSave -Aliases: +## Aliases +: - afterSaveProduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md index 1175054e92..ff1f6eb22a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionProductUpdate -Aliases: +## Aliases +: - updateproduct diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md index fcda4e8fe9..5393b10aa5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionSubmitAccountBefore -Aliases: +## Aliases +: - actionBeforeSubmitAccount diff --git a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md index 3fce8a9304..5e32b685cb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md +++ b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionUpdateQuantity -Aliases: +## Aliases +: - updateQuantity diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md index 7f85c414a9..b6ee579119 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md @@ -17,7 +17,8 @@ hasExample: true # Hook actionValidateOrder -Aliases: +## Aliases +: - newOrder diff --git a/modules/concepts/hooks/list-of-hooks/actionWatermark.md b/modules/concepts/hooks/list-of-hooks/actionWatermark.md index b3aa36d349..f468c7c13f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWatermark.md +++ b/modules/concepts/hooks/list-of-hooks/actionWatermark.md @@ -14,7 +14,8 @@ hookAliases: # Hook actionWatermark -Aliases: +## Aliases +: - watermark diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md index a2c675160d..d275850d91 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayAdminCustomers -Aliases: +## Aliases +: - adminCustomers diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md index 39cb32908a..3de70d729c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayAdminGridTableAfter -Aliases: +## Aliases +: - displayAdminListAfter diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md index 426fdace9f..3c2913bed2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayAdminGridTableBefore -Aliases: +## Aliases +: - displayAdminListBefore diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md index 05a4a6aa6a..dbd433b011 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md @@ -15,7 +15,8 @@ hasExample: true # Hook displayAdminOrder -Aliases: +## Aliases +: - adminOrder ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md index 691c77c8ea..ef55287aa4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayAdminOrderSide -Aliases: +## Aliases +: - displayBackofficeOrderActions ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md index fbdcf0cb4c..f7db8aeae8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayAdminStatsModules -Aliases: +## Aliases +: - AdminStatsModules diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md index d55d2c6fa5..3fb3cd1f62 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md @@ -14,7 +14,8 @@ hookAliases: # Hook displaybackOfficeHeader -Aliases: +## Aliases +: - backOfficeHeader diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md index 1f63d2adf5..c7946efb23 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md @@ -14,7 +14,8 @@ hookAliases: # Hook displaybackOfficeTop -Aliases: +## Aliases +: - backOfficeTop diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md index f516595cd2..de0b44ab06 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayBeforeCarrier -Aliases: +## Aliases +: - beforeCarrier diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md index 2237b9bb50..19140547eb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayCustomerAccount -Aliases: +## Aliases +: - customerAccount diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md index bd30d212c8..6d98d6a35d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayCustomerAccountForm -Aliases: +## Aliases +: - createAccountForm diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md index 5664925c37..054f7b4518 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayCustomerAccountFormTop -Aliases: +## Aliases +: - createAccountTop diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md index 9479f9d926..0b5d5c193d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayFeatureForm -Aliases: +## Aliases +: - featureForm diff --git a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md index 7bf4a25acb..5d09c02361 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayFeaturePostProcess -Aliases: +## Aliases +: - postProcessFeature diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md index 26b41c3deb..42d4f67a9a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayFeatureValuePostProcess -Aliases: +## Aliases +: - postProcessFeatureValue diff --git a/modules/concepts/hooks/list-of-hooks/displayFooter.md b/modules/concepts/hooks/list-of-hooks/displayFooter.md index 2155c94293..b71a59f973 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooter.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayFooter -Aliases: +## Aliases +: - footer diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md index 5c199e60f8..22a39d84d4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayFooterProduct -Aliases: +## Aliases +: - productfooter diff --git a/modules/concepts/hooks/list-of-hooks/displayHeader.md b/modules/concepts/hooks/list-of-hooks/displayHeader.md index 63c5897282..9c2498862f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeader.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayHeader -Aliases: +## Aliases +: - Header diff --git a/modules/concepts/hooks/list-of-hooks/displayHome.md b/modules/concepts/hooks/list-of-hooks/displayHome.md index 34bc41eb66..5d09d11e22 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHome.md +++ b/modules/concepts/hooks/list-of-hooks/displayHome.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayHome -Aliases: +## Aliases +: - home diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md index 02797f26c6..104cb357e2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayLeftColumn -Aliases: +## Aliases +: - extraLeft ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md index db342628fb..37aade7457 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayLeftColumnProduct -Aliases: +## Aliases +: - extraLeft diff --git a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md index 5471199c93..54140232ed 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayMyAccountBlock -Aliases: +## Aliases +: - myAccountBlock diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md index 985c0f4b4f..5e1a9b531e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayOrderConfirmation -Aliases: +## Aliases +: - orderConfirmation diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md index 190db20f93..85447004ad 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayOrderDetail -Aliases: +## Aliases +: - orderDetailDisplayed diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md index 67e58612bd..5e22caeb49 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayPaymentReturn -Aliases: +## Aliases +: - paymentReturn diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md index 9065fe3f43..164f2b3a35 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayPaymentTop -Aliases: +## Aliases +: - paymentTop diff --git a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md index 8f5302fec9..f7687ae748 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md @@ -15,12 +15,11 @@ hookAliases: # Hook displayProductAdditionalInfo -Aliases: +## Aliases + - productActions - displayProductButtons - - ## Information {{% notice tip %}} diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md index bb79aeab50..7137e64080 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayRightColumn -Aliases: +## Aliases +: - extraRight ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md index cdb2d212f1..5bc8a9d6a2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayRightColumnProduct -Aliases: +## Aliases +: - extraRight diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md index bca9fab025..f3031284ce 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayShoppingCart -Aliases: +## Aliases +: - shoppingCartExtra diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md index 686e1d9067..39bf7e0e67 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayShoppingCartFooter -Aliases: +## Aliases +: - shoppingCart diff --git a/modules/concepts/hooks/list-of-hooks/displayTop.md b/modules/concepts/hooks/list-of-hooks/displayTop.md index dcf8110951..11e3d397ec 100644 --- a/modules/concepts/hooks/list-of-hooks/displayTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayTop.md @@ -14,7 +14,8 @@ hookAliases: # Hook displayTop -Aliases: +## Aliases +: - top From b99891df63d94afea0610e95660e1e518b59173f Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 26 Sep 2023 16:51:13 +0200 Subject: [PATCH 08/23] Make hook alias a title and paragraph for better search --- modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md | 2 +- modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md | 2 +- .../concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md | 2 +- .../concepts/hooks/list-of-hooks/actionAttributeGroupSave.md | 2 +- modules/concepts/hooks/list-of-hooks/actionAttributeSave.md | 2 +- modules/concepts/hooks/list-of-hooks/actionAuthentication.md | 2 +- .../concepts/hooks/list-of-hooks/actionAuthenticationBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCartSave.md | 2 +- .../hooks/list-of-hooks/actionCartUpdateQuantityBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md | 2 +- .../concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md | 2 +- modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md | 2 +- modules/concepts/hooks/list-of-hooks/actionFeatureSave.md | 2 +- .../concepts/hooks/list-of-hooks/actionFeatureValueDelete.md | 2 +- modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md | 2 +- .../hooks/list-of-hooks/actionFrontControllerInitAfter.md | 2 +- modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md | 2 +- modules/concepts/hooks/list-of-hooks/actionOrderReturn.md | 2 +- modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md | 2 +- .../concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md | 2 +- modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md | 2 +- modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md | 2 +- .../concepts/hooks/list-of-hooks/actionPaymentConfirmation.md | 2 +- modules/concepts/hooks/list-of-hooks/actionProductAdd.md | 2 +- .../hooks/list-of-hooks/actionProductAttributeDelete.md | 2 +- .../hooks/list-of-hooks/actionProductAttributeUpdate.md | 2 +- modules/concepts/hooks/list-of-hooks/actionProductCancel.md | 2 +- modules/concepts/hooks/list-of-hooks/actionProductDelete.md | 2 +- modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md | 2 +- modules/concepts/hooks/list-of-hooks/actionProductSave.md | 2 +- modules/concepts/hooks/list-of-hooks/actionProductUpdate.md | 2 +- .../concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md | 2 +- modules/concepts/hooks/list-of-hooks/actionValidateOrder.md | 2 +- modules/concepts/hooks/list-of-hooks/actionWatermark.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md | 2 +- .../concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md | 2 +- .../concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAdminOrder.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md | 2 +- .../concepts/hooks/list-of-hooks/displayAdminStatsModules.md | 2 +- modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md | 2 +- modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md | 2 +- modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md | 2 +- modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md | 2 +- .../concepts/hooks/list-of-hooks/displayCustomerAccountForm.md | 2 +- .../hooks/list-of-hooks/displayCustomerAccountFormTop.md | 2 +- modules/concepts/hooks/list-of-hooks/displayFeatureForm.md | 2 +- .../concepts/hooks/list-of-hooks/displayFeaturePostProcess.md | 2 +- .../hooks/list-of-hooks/displayFeatureValuePostProcess.md | 2 +- modules/concepts/hooks/list-of-hooks/displayFooter.md | 2 +- modules/concepts/hooks/list-of-hooks/displayFooterProduct.md | 2 +- modules/concepts/hooks/list-of-hooks/displayHeader.md | 2 +- modules/concepts/hooks/list-of-hooks/displayHome.md | 2 +- modules/concepts/hooks/list-of-hooks/displayLeftColumn.md | 2 +- .../concepts/hooks/list-of-hooks/displayLeftColumnProduct.md | 2 +- modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md | 2 +- .../concepts/hooks/list-of-hooks/displayOrderConfirmation.md | 2 +- modules/concepts/hooks/list-of-hooks/displayOrderDetail.md | 2 +- modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md | 2 +- modules/concepts/hooks/list-of-hooks/displayPaymentTop.md | 2 +- modules/concepts/hooks/list-of-hooks/displayRightColumn.md | 2 +- .../concepts/hooks/list-of-hooks/displayRightColumnProduct.md | 2 +- modules/concepts/hooks/list-of-hooks/displayShoppingCart.md | 2 +- .../concepts/hooks/list-of-hooks/displayShoppingCartFooter.md | 2 +- modules/concepts/hooks/list-of-hooks/displayTop.md | 2 +- 71 files changed, 71 insertions(+), 71 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md index f1ccf90807..78ff30bac3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAdminMetaSave ## Aliases -: + - afterSaveAdminMeta diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index f32481e3e7..c060004155 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAjaxDieBefore ## Aliases -: + - actionBeforeAjaxDie diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md index ceb264f7af..62870dae7f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAttributeDelete ## Aliases -: + - afterDeleteAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md index 6729c1e909..5218b61d77 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAttributeGroupDelete ## Aliases -: + - afterDeleteAttributeGroup diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md index 9c5e89c09b..3ee7c220ca 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAttributeGroupSave ## Aliases -: + - afterSaveAttributeGroup diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md index baca84883c..6126477306 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAttributeSave ## Aliases -: + - afterSaveAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md index 4ea917e203..dc484bc22c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAuthentication ## Aliases -: + - authentication diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md index 6969531d4e..538d723efc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionAuthenticationBefore ## Aliases -: + - actionBeforeAuthentication diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md index 79ccde2ff0..4e26a1994d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCarrierProcess ## Aliases -: + - processCarrier diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md index bae817d2aa..98edc837d9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCarrierUpdate ## Aliases -: + - updateCarrier diff --git a/modules/concepts/hooks/list-of-hooks/actionCartSave.md b/modules/concepts/hooks/list-of-hooks/actionCartSave.md index 6d702329f3..c7cb5f3f42 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartSave.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCartSave ## Aliases -: + - cart diff --git a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md index 2367e44346..c52d7bc6db 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCartUpdateQuantityBefore ## Aliases -: + - actionBeforeCartUpdateQty diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md index 0c0970f3db..8f99010ac1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCategoryAdd ## Aliases -: + - categoryAddition diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md index 143275d557..978c641891 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCategoryDelete ## Aliases -: + - categoryDeletion diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md index 71e7a2cb06..e5a235ee31 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCategoryUpdate ## Aliases -: + - categoryUpdate diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md index cfc9258d96..dbdc78b542 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionCustomerAccountAdd ## Aliases -: + - createAccount diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md index e47bf4224d..1b53beaa5a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionFeatureDelete ## Aliases -: + - afterDeleteFeature diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md index 39119acf3d..4cae8ed344 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionFeatureSave ## Aliases -: + - afterSaveFeature diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md index 42c82787a0..0306f4ddd3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionFeatureValueDelete ## Aliases -: + - afterDeleteFeatureValue diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md index 2e4d042e4c..662c44be47 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionFeatureValueSave ## Aliases -: + - afterSaveFeatureValue diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md index 1d9a1e3983..509a65d62e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionFrontControllerInitAfter ## Aliases -: + - actionFrontControllerAfterInit diff --git a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md index cf4064a450..8aca2e7599 100644 --- a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md +++ b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionHtaccessCreate ## Aliases -: + - afterCreateHtaccess diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md index eb60c78eab..4668482827 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionOrderReturn ## Aliases -: + - orderReturn diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md index d3021eeb27..71121b037c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionOrderSlipAdd ## Aliases -: + - orderSlip diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md index c65b863635..0c05d61ef3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionOrderStatusPostUpdate ## Aliases -: + - postUpdateOrderStatus diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md index b907b1f12b..3ad2d8ead1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionOrderStatusUpdate ## Aliases -: + - updateOrderStatus diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md index adb3e43958..383a04d822 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionPaymentCCAdd ## Aliases -: + - paymentCCAdded diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md index 0a3115c43f..94b6130491 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionPaymentConfirmation ## Aliases -: + - paymentConfirm diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md index 75f7960b71..fe8a8c28f9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductAdd ## Aliases -: + - addproduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md index 372cbc36c4..2b6268a882 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductAttributeDelete ## Aliases -: + - deleteProductAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md index 95236ae558..98a51aaf9c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductAttributeUpdate ## Aliases -: + - updateProductAttribute diff --git a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md index 3d2fc84eb4..f469414e42 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductCancel ## Aliases -: + - cancelProduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md index ba8b466744..8644b712c7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductDelete ## Aliases -: + - deleteproduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md index 7b643a61d9..2c47b2d529 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductOutOfStock ## Aliases -: + - productOutOfStock diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSave.md b/modules/concepts/hooks/list-of-hooks/actionProductSave.md index 49cee0f9cc..0ed9dbe337 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSave.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductSave ## Aliases -: + - afterSaveProduct diff --git a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md index ff1f6eb22a..08233cf4c9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionProductUpdate ## Aliases -: + - updateproduct diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md index 5393b10aa5..c860fd53f4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionSubmitAccountBefore ## Aliases -: + - actionBeforeSubmitAccount diff --git a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md index 5e32b685cb..68a9131878 100644 --- a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md +++ b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionUpdateQuantity ## Aliases -: + - updateQuantity diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md index b6ee579119..e9e56d242a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md @@ -18,7 +18,7 @@ hasExample: true # Hook actionValidateOrder ## Aliases -: + - newOrder diff --git a/modules/concepts/hooks/list-of-hooks/actionWatermark.md b/modules/concepts/hooks/list-of-hooks/actionWatermark.md index f468c7c13f..79b8227230 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWatermark.md +++ b/modules/concepts/hooks/list-of-hooks/actionWatermark.md @@ -15,7 +15,7 @@ hookAliases: # Hook actionWatermark ## Aliases -: + - watermark diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md index d275850d91..3f24e00972 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayAdminCustomers ## Aliases -: + - adminCustomers diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md index 3de70d729c..7d5242d4d4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayAdminGridTableAfter ## Aliases -: + - displayAdminListAfter diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md index 3c2913bed2..e022f63202 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayAdminGridTableBefore ## Aliases -: + - displayAdminListBefore diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md index dbd433b011..4474c98c90 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md @@ -16,7 +16,7 @@ hasExample: true # Hook displayAdminOrder ## Aliases -: + - adminOrder ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md index ef55287aa4..ef4404ccd9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayAdminOrderSide ## Aliases -: + - displayBackofficeOrderActions ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md index f7db8aeae8..ca1613f9d9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayAdminStatsModules ## Aliases -: + - AdminStatsModules diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md index 3fb3cd1f62..46b5d3f89c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md @@ -15,7 +15,7 @@ hookAliases: # Hook displaybackOfficeHeader ## Aliases -: + - backOfficeHeader diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md index c7946efb23..af9a8d6cab 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md @@ -15,7 +15,7 @@ hookAliases: # Hook displaybackOfficeTop ## Aliases -: + - backOfficeTop diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md index de0b44ab06..cddaa85c68 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayBeforeCarrier ## Aliases -: + - beforeCarrier diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md index 19140547eb..c34badbc0d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayCustomerAccount ## Aliases -: + - customerAccount diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md index 6d98d6a35d..b0e22a0125 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayCustomerAccountForm ## Aliases -: + - createAccountForm diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md index 054f7b4518..ecda5f4a7d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayCustomerAccountFormTop ## Aliases -: + - createAccountTop diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md index 0b5d5c193d..bd6eff4245 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayFeatureForm ## Aliases -: + - featureForm diff --git a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md index 5d09c02361..cf4ab5c58e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayFeaturePostProcess ## Aliases -: + - postProcessFeature diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md index 42d4f67a9a..9fee450b39 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayFeatureValuePostProcess ## Aliases -: + - postProcessFeatureValue diff --git a/modules/concepts/hooks/list-of-hooks/displayFooter.md b/modules/concepts/hooks/list-of-hooks/displayFooter.md index b71a59f973..f531946e58 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooter.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayFooter ## Aliases -: + - footer diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md index 22a39d84d4..4a70f04468 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayFooterProduct ## Aliases -: + - productfooter diff --git a/modules/concepts/hooks/list-of-hooks/displayHeader.md b/modules/concepts/hooks/list-of-hooks/displayHeader.md index 9c2498862f..f3e7fa78c3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeader.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayHeader ## Aliases -: + - Header diff --git a/modules/concepts/hooks/list-of-hooks/displayHome.md b/modules/concepts/hooks/list-of-hooks/displayHome.md index 5d09d11e22..00e0185a60 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHome.md +++ b/modules/concepts/hooks/list-of-hooks/displayHome.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayHome ## Aliases -: + - home diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md index 104cb357e2..add7cc56fd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayLeftColumn ## Aliases -: + - extraLeft ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md index 37aade7457..3cc0df6328 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayLeftColumnProduct ## Aliases -: + - extraLeft diff --git a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md index 54140232ed..a126ae2201 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayMyAccountBlock ## Aliases -: + - myAccountBlock diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md index 5e1a9b531e..e548c18031 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayOrderConfirmation ## Aliases -: + - orderConfirmation diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md index 85447004ad..0546b3d882 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayOrderDetail ## Aliases -: + - orderDetailDisplayed diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md index 5e22caeb49..5a982f2388 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayPaymentReturn ## Aliases -: + - paymentReturn diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md index 164f2b3a35..5fbf30d154 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayPaymentTop ## Aliases -: + - paymentTop diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md index 7137e64080..d113004dd7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayRightColumn ## Aliases -: + - extraRight ## Information diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md index 5bc8a9d6a2..5903838480 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayRightColumnProduct ## Aliases -: + - extraRight diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md index f3031284ce..c77399c318 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayShoppingCart ## Aliases -: + - shoppingCartExtra diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md index 39bf7e0e67..a68011980a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayShoppingCartFooter ## Aliases -: + - shoppingCart diff --git a/modules/concepts/hooks/list-of-hooks/displayTop.md b/modules/concepts/hooks/list-of-hooks/displayTop.md index 11e3d397ec..adea71239e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayTop.md @@ -15,7 +15,7 @@ hookAliases: # Hook displayTop ## Aliases -: + - top From 3ecae664c0b77eae6c71c71971e845593509503c Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 26 Sep 2023 17:57:43 +0200 Subject: [PATCH 09/23] remove unwanted line --- modules/concepts/hooks/list-of-hooks/actionValidateOrder.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md index e9e56d242a..0dbe8d9733 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md @@ -10,8 +10,6 @@ locations: type: action hookAliases: - newOrder -aliases: - - /8/modules/sample-modules/example-hooks/actionValidateOrder hasExample: true --- From dbd6debdb7f733607bee07b6dacae8f6795e169e Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 26 Sep 2023 17:57:58 +0200 Subject: [PATCH 10/23] Add graphEngine hook page --- .../hooks/list-of-hooks/graphEngine.md | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 modules/concepts/hooks/list-of-hooks/graphEngine.md diff --git a/modules/concepts/hooks/list-of-hooks/graphEngine.md b/modules/concepts/hooks/list-of-hooks/graphEngine.md new file mode 100644 index 0000000000..08af465268 --- /dev/null +++ b/modules/concepts/hooks/list-of-hooks/graphEngine.md @@ -0,0 +1,34 @@ +--- +menuTitle: graphEngine +Title: graphEngine +hidden: true +hookTitle: +files: + - modules/gsitemap/gsitemap.php +locations: + - back office +type: display +hookAliases: +--- + +# Hook graphEngine + +## Information + +{{% notice tip %}} +**Creates a rendering engine for graphs to be used in the back office** + +Permits creating graph engines for the back office, you can refer to our [`GraphNvD3` implementation](https://github.com/PrestaShop/graphnvd3). +{{% /notice %}} + +Hook locations: + - front office + +Located in: + - [classes/module/ModuleGraph.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGraph.php) + +## Call of the Hook in the origin file + +```php +return call_user_func([$render, 'hookGraphEngine'], $params, $drawer); +``` \ No newline at end of file From 99147ead4d470bb2e05589903ccde790bf5edfd0 Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 26 Sep 2023 18:09:48 +0200 Subject: [PATCH 11/23] Fix displayAdminOrderTop page --- modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md index 1bfff26b58..496f113feb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md @@ -1,6 +1,6 @@ --- menuTitle: displayAdminOrderTop -Title: displayAdminOrder +Title: displayAdminOrderTop hidden: true hookTitle: Display new elements in the Back Office, top of Order page files: @@ -12,7 +12,7 @@ hookAliases: hasExample: true --- -# Hook displayAdminOrder +# Hook displayAdminOrderTop ## Information From 7b8c0c1ce0a2b56b396c1e5fca0f86ded3b8eebe Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 3 Oct 2023 08:40:40 +0200 Subject: [PATCH 12/23] Add missing hooks --- ...ine.md => displayAdminStatsGraphEngine.md} | 11 ++--- .../displayAdminStatsGridEngine.md | 27 ++++++++++++ .../list-of-hooks/displayAttributeForm.md | 35 ++++++++++++++++ .../list-of-hooks/displayFeatureValueForm.md | 42 +++++++++++++++++++ .../list-of-hooks/displayFooterCategory.md | 8 ++-- .../list-of-hooks/displayHeaderCategory.md | 35 ++++++++++++++++ .../displayModuleConfigureExtraButtons.md | 35 ++++++++++++++++ 7 files changed, 184 insertions(+), 9 deletions(-) rename modules/concepts/hooks/list-of-hooks/{graphEngine.md => displayAdminStatsGraphEngine.md} (78%) create mode 100644 modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md create mode 100644 modules/concepts/hooks/list-of-hooks/displayAttributeForm.md create mode 100644 modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md create mode 100644 modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md create mode 100644 modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md diff --git a/modules/concepts/hooks/list-of-hooks/graphEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md similarity index 78% rename from modules/concepts/hooks/list-of-hooks/graphEngine.md rename to modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md index 08af465268..073c6ff0fa 100644 --- a/modules/concepts/hooks/list-of-hooks/graphEngine.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md @@ -1,17 +1,18 @@ --- -menuTitle: graphEngine -Title: graphEngine +menuTitle: displayAdminStatsGraphEngine +Title: displayAdminStatsGraphEngine hidden: true hookTitle: files: - - modules/gsitemap/gsitemap.php + - classes/module/ModuleGraph.php locations: - back office type: display hookAliases: + - GraphEngine --- -# Hook graphEngine +# Hook displayAdminStatsGraphEngine ## Information @@ -22,7 +23,7 @@ Permits creating graph engines for the back office, you can refer to our [`Graph {{% /notice %}} Hook locations: - - front office + - back office Located in: - [classes/module/ModuleGraph.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGraph.php) diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md new file mode 100644 index 0000000000..ad192bad8e --- /dev/null +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md @@ -0,0 +1,27 @@ +--- +menuTitle: displayAdminStatsGridEngine +Title: displayAdminStatsGridEngine +hidden: true +hookTitle: +files: + - classes/module/ModuleGridEngine.php +locations: + - back office +type: display +hookAliases: + - GridEngine +--- + +# Hook displayAdminStatsGridEngine + +## Information + +{{% notice tip %}} + +{{% /notice %}} + +Hook locations: + - back office + +Located in: + - [classes/module/ModuleGridEngine.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGridEngine.php) \ No newline at end of file diff --git a/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md new file mode 100644 index 0000000000..7571bb7b41 --- /dev/null +++ b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md @@ -0,0 +1,35 @@ +--- +menuTitle: displayAttributeForm +Title: displayAttributeForm +hidden: true +hookTitle: +files: + - admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl +locations: + - back office +type: display +hookAliases: + - attributeForm +--- + +# Hook displayAttributeForm + +## Information + +{{% notice tip %}} +**Add fields to the form 'attribute value'** + +This hook adds fields to the form 'attribute value' +{{% /notice %}} + +Hook locations: + - back office + +Located in: + - [admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl) + +## Call of the Hook in the origin file + +```php +{hook h="displayAttributeForm" id_attribute=$form_id} +``` \ No newline at end of file diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md b/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md new file mode 100644 index 0000000000..4d1a6edbd9 --- /dev/null +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md @@ -0,0 +1,42 @@ +--- +menuTitle: displayFeatureValueForm +Title: displayFeatureValueForm +hidden: true +hookTitle: Add fields to the form 'feature value' +files: + - admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl +locations: + - back office +type: display +hookAliases: + - featureValueForm +--- + +# Hook displayFeatureValueForm + +## Aliases + + - featureValueForm + + +## Information + +{{% notice tip %}} +**Add fields to the form 'feature value':** + +This hook adds fields to the form 'feature value' +{{% /notice %}} + +Hook locations: + - back office + +Hook type: display + +Located in: + - [admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl) + +## Call of the Hook in the origin file + +```php +{hook h="displayFeatureValueForm" id_feature_value=$feature_value->id|intval} +``` \ No newline at end of file diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md index a727c3bab8..8c5a9a6106 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md @@ -2,7 +2,7 @@ menuTitle: displayFooterCategory Title: displayFooterCategory hidden: true -hookTitle: Footer at the bottom of the product list +hookTitle: This hook adds new blocks under the products listing in a category/search files: - Classic Theme: templates/catalog/listing/product-list.tpl locations: @@ -10,14 +10,14 @@ locations: type: display --- -# Hook displayFooterCategory {{< minver v="1.7.7" >}} +# Hook displayFooterCategory ## Information {{% notice tip %}} -**Product list footer:** +**Category / search footer:** -Displayed at the bottom of the product list +This hook adds new blocks under the products listing in a category/search {{% /notice %}} Hook locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md new file mode 100644 index 0000000000..752025280e --- /dev/null +++ b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md @@ -0,0 +1,35 @@ +--- +menuTitle: displayHeaderCategory +Title: displayHeaderCategory +hidden: true +hookTitle: Footer above of the product list +files: + - Classic Theme: templates/catalog/listing/product-list.tpl +locations: + - front office +type: display +--- + +# Hook displayHeaderCategory + +## Information + +{{% notice tip %}} +**Category / search header:** + +This hook adds new blocks above the products listing in a category/search +{{% /notice %}} + +Hook locations: + - front office + +Hook type: display + +Located in: + - [Classic Theme: templates/catalog/listing/product-list.tpl](https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl) + +## Call of the Hook in the origin file + +```php +{hook h="displayHeaderCategory"} +``` \ No newline at end of file diff --git a/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md b/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md new file mode 100644 index 0000000000..f943ea9ebe --- /dev/null +++ b/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md @@ -0,0 +1,35 @@ +--- +menuTitle: displayModuleConfigureExtraButons +Title: displayModuleConfigureExtraButons +hidden: true +hookTitle: Module configuration - After toolbar buttons +files: + - admin-dev/themes/default/template/controllers/modules/configure.tpl +locations: + - back office +type: display +--- + +# Hook displayModuleConfigureExtraButons + +## Information + +{{% notice tip %}} +**Module configuration - After toolbar buttons** + +This hook allows to add toolbar's additional content on module configuration page +{{% /notice %}} + +Hook locations: + - back office + +Hook type: display + +Located in: + - [admin-dev/themes/default/template/controllers/modules/configure.tpl](https://github.com/PrestaShop/Prestashop/blob/8.0.x/admin-dev/themes/default/template/controllers/modules/configure.tpl) + +## Call of the Hook in the origin file + +```php +{hook h="displayModuleConfigureExtraButtons" module_name=$module_name} +``` \ No newline at end of file From 5d97255f57aab918c9913892cd55d96a90cc139c Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Thu, 5 Oct 2023 08:41:31 +0200 Subject: [PATCH 13/23] Add origin data --- .../list-of-hooks/actionDeleteGDPRCustomer.md | 3 +++ .../list-of-hooks/actionExportGDPRData.md | 3 +++ .../actionModuleMailAlertSendCustomer.md | 19 +++++++++++-------- .../actionNewsletterRegistrationAfter.md | 19 +++++++++++-------- .../actionNewsletterRegistrationBefore.md | 3 +++ ...actionObjectProductCommentValidateAfter.md | 3 +++ .../list-of-hooks/actionProductOutOfStock.md | 5 +++-- .../list-of-hooks/actionProductSearchAfter.md | 3 +++ .../list-of-hooks/actionWishlistAddProduct.md | 3 +++ .../displayAdditionalCustomerAddressFields.md | 3 +++ .../displayAddressSelectorBottom.md | 3 +++ .../displayAfterBodyOpeningTag.md | 3 +++ .../displayAfterProductThumbs.md | 3 +++ .../list-of-hooks/displayAfterTitleTag.md | 3 +++ .../hooks/list-of-hooks/displayBanner.md | 3 +++ .../displayBeforeBodyClosingTag.md | 3 +++ .../displayCMSDisputeInformation.md | 3 +++ .../list-of-hooks/displayCMSPrintButton.md | 3 +++ .../displayCartExtraProductActions.md | 3 +++ .../list-of-hooks/displayCartModalContent.md | 3 +++ .../list-of-hooks/displayCartModalFooter.md | 3 +++ .../displayCheckoutBeforeConfirmation.md | 3 +++ .../displayCheckoutSubtotalDetails.md | 3 +++ .../displayCheckoutSummaryTop.md | 3 +++ .../list-of-hooks/displayContactContent.md | 3 +++ .../list-of-hooks/displayContactLeftColumn.md | 3 +++ .../displayContactRightColumn.md | 3 +++ .../displayCrossSellingShoppingCart.md | 3 +++ .../list-of-hooks/displayCustomerAccount.md | 3 +++ .../displayCustomerLoginFormAfter.md | 3 +++ .../list-of-hooks/displayExpressCheckout.md | 3 +++ .../hooks/list-of-hooks/displayFooter.md | 5 +++-- .../hooks/list-of-hooks/displayFooterAfter.md | 3 +++ .../list-of-hooks/displayFooterBefore.md | 3 +++ .../list-of-hooks/displayFooterCategory.md | 3 +++ .../list-of-hooks/displayFooterProduct.md | 5 +++-- .../hooks/list-of-hooks/displayGDPRConsent.md | 3 +++ .../list-of-hooks/displayHeaderCategory.md | 3 +++ .../hooks/list-of-hooks/displayLeftColumn.md | 3 +++ .../list-of-hooks/displayLeftColumnProduct.md | 5 +++-- .../list-of-hooks/displayMyAccountBlock.md | 17 +++++++---------- .../hooks/list-of-hooks/displayNav1.md | 3 +++ .../hooks/list-of-hooks/displayNav2.md | 3 +++ .../list-of-hooks/displayNavFullWidth.md | 3 +++ .../displayNewsletterRegistration.md | 3 +++ .../hooks/list-of-hooks/displayNotFound.md | 3 +++ .../displayOrderConfirmation1.md | 3 +++ .../displayOrderConfirmation2.md | 3 +++ .../list-of-hooks/displayPaymentByBinaries.md | 3 +++ .../hooks/list-of-hooks/displayPaymentTop.md | 5 +++-- .../displayPersonalInformationTop.md | 3 +++ .../list-of-hooks/displayProductActions.md | 3 +++ .../displayProductAdditionalInfo.md | 3 +++ .../displayProductListReviews.md | 3 +++ .../list-of-hooks/displayProductPriceBlock.md | 3 +++ .../hooks/list-of-hooks/displayReassurance.md | 3 +++ .../hooks/list-of-hooks/displayRightColumn.md | 3 +++ .../displayRightColumnProduct.md | 5 +++-- .../hooks/list-of-hooks/displaySearch.md | 3 +++ .../list-of-hooks/displayShoppingCart.md | 5 +++-- .../displayShoppingCartFooter.md | 5 +++-- .../hooks/list-of-hooks/displayTop.md | 5 +++-- 62 files changed, 206 insertions(+), 44 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md index 5efef5c9e0..0906a72a3c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: module --- # Hook actionDeleteGDPRCustomer @@ -20,6 +21,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/psgdpr/psgdpr.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php) diff --git a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md index 73d7ca0e29..b5159db6fa 100644 --- a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md +++ b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +Hook origin: module --- # Hook actionExportGDPRData @@ -20,6 +21,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/psgdpr/psgdpr.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php) diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md index b8f6f9d7ed..6018513f72 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: module --- # Hook actionModuleMailAlertSendCustomer @@ -20,6 +21,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/ps_emailalerts/MailAlert.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailalerts/MailAlert.php) @@ -27,12 +30,12 @@ Located in: ```php Hook::exec( - 'actionModuleMailAlertSendCustomer', - [ - 'product' => $product_name, - 'link' => $product_link, - 'customer' => $customer, - 'product_obj' => $product, - ] - ) + 'actionModuleMailAlertSendCustomer', + [ + 'product' => $product_name, + 'link' => $product_link, + 'customer' => $customer, + 'product_obj' => $product, + ] +) ``` \ No newline at end of file diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md index 22636c3dfd..e72c4d7720 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: module --- # Hook actionNewsletterRegistrationAfter @@ -20,6 +21,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/ps_emailsubscription/ps_emailsubscription.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php) @@ -27,12 +30,12 @@ Located in: ```php Hook::exec( - 'actionNewsletterRegistrationAfter', - [ - 'hookName' => $hookName, - 'email' => $_POST['email'], - 'action' => $_POST['action'], - 'error' => &$this->error, - ] - ) + 'actionNewsletterRegistrationAfter', + [ + 'hookName' => $hookName, + 'email' => $_POST['email'], + 'action' => $_POST['action'], + 'error' => &$this->error, + ] +) ``` \ No newline at end of file diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md index 9f99b6c3e8..59e3226905 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: module --- # Hook actionNewsletterRegistrationBefore @@ -20,6 +21,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/ps_emailsubscription/ps_emailsubscription.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php) diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md index b418417744..8b5c92aae0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md @@ -10,6 +10,7 @@ locations: - front office type: action hookAliases: +origin: module --- # Hook actionObjectProductCommentValidateAfter @@ -22,6 +23,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/productcomments/ProductComment.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/productcomments/ProductComment.php) diff --git a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md index 2c47b2d529..f5c87bf903 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md @@ -10,6 +10,7 @@ locations: type: action hookAliases: - productOutOfStock +origin: theme --- # Hook actionProductOutOfStock @@ -18,8 +19,6 @@ hookAliases: - productOutOfStock - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: action +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/_partials/product-details.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-details.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md index 86fd4ccbaf..0b56333b83 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: module --- # Hook actionProductSearchAfter @@ -26,6 +27,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/blockwishlist/controllers/front/view.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/view.php) diff --git a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md index c743931cea..c71dc7020e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: module --- # Hook actionWishlistAddProduct @@ -20,6 +21,8 @@ Hook locations: Hook type: action +Hook origin: module + Located in: - [modules/blockwishlist/controllers/front/action.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/action.php) diff --git a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md index 81418229f5..f164fd110c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayAdditionalCustomerAddressFields @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/customer/_partials/block-address.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/_partials/block-address.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md index b62c7bdbfe..686afd2924 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: since: 8.1.0 +origin: theme --- # Hook displayAddressSelectorBottom @@ -27,6 +28,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/steps/addresses.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/addresses.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md index 017b234fc9..1bf72600ff 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md @@ -8,6 +8,7 @@ files: locations: - front office type: display +origin: theme hookAliases: --- @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md index 599d870b63..56eeaf9869 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayAfterProductThumbs @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/_partials/product-cover-thumbnails.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-cover-thumbnails.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md index 89666b56bf..d290396335 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayAfterTitleTag @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/_partials/head.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/head.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayBanner.md b/modules/concepts/hooks/list-of-hooks/displayBanner.md index 54b4ec8707..149be22ba6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBanner.md +++ b/modules/concepts/hooks/list-of-hooks/displayBanner.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayBanner @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/header.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md index aada50d825..09b1722feb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayBeforeBodyClosingTag @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md index 682c995f3b..b1338ff2b4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCMSDisputeInformation @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/cms/page.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md index d5e15b98b9..b3386ea325 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCMSPrintButton @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/cms/page.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md index 79f09b7676..b809f20635 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: theme --- # Hook displayCartExtraProductActions @@ -26,6 +27,8 @@ Hook locations: Hook type: action +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/cart-detailed-product-line.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-product-line.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md index 630042402a..8610e5162e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCartModalContent @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: modules/ps_shoppingcart/modal.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md index 82b02769af..2b93462380 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCartModalFooter @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: modules/ps_shoppingcart/modal.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md index 6935130256..ff38bc368f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCheckoutBeforeConfirmation @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/steps/payment.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md index edccc579c1..d1e060d76c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCheckoutSubtotalDetails @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/cart-detailed-totals.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-totals.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md index fa9832e675..61e227388f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCheckoutSummaryTop @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/cart-summary-top.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-summary-top.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayContactContent.md b/modules/concepts/hooks/list-of-hooks/displayContactContent.md index 69e1e33c2e..f74db26986 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactContent.md @@ -10,6 +10,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayContactContent {{< minver v="8.1" >}} @@ -28,6 +29,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Hummingbird Theme: templates/contact.tpl](https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl) - [Classic Theme: templates/contact.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md index 8e755947ba..fba6ab4b10 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md @@ -10,6 +10,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayContactLeftColumn {{< minver v="8.1" >}} @@ -28,6 +29,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Hummingbird Theme: templates/contact.tpl](https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl) - [Classic Theme: templates/contact.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md index 9adcfaea9a..8873714012 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md @@ -10,6 +10,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayContactRightColumn {{< minver v="8.1" >}} @@ -28,6 +29,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Hummingbird Theme: templates/contact.tpl](https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl) - [Classic Theme: templates/contact.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md index b06d940a15..3b496c2cc9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCrossSellingShoppingCart @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md index c34badbc0d..a36aee254d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - customerAccount +origin: theme --- # Hook displayCustomerAccount @@ -33,6 +34,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/customer/my-account.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/my-account.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md index f8c62ffa48..8880c91e44 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayCustomerLoginFormAfter @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/customer/authentication.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/authentication.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md index 46b6d53eaf..87631d6294 100644 --- a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md +++ b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayExpressCheckout @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/cart-detailed-actions.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-actions.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayFooter.md b/modules/concepts/hooks/list-of-hooks/displayFooter.md index f531946e58..997319d976 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooter.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - footer +origin: theme --- # Hook displayFooter @@ -18,8 +19,6 @@ hookAliases: - footer - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/_partials/footer.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md index 9f0ecb46b9..44e4e2b10b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayFooterAfter @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/_partials/footer.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md index 96f24a8d72..c8e61faa44 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: hasExample: true +origin: theme --- # Hook displayFooterBefore @@ -21,6 +22,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/_partials/footer.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md index 8c5a9a6106..5351ff9bc4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md @@ -8,6 +8,7 @@ files: locations: - front office type: display +origin: theme --- # Hook displayFooterCategory @@ -25,6 +26,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/listing/product-list.tpl](https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md index 4a70f04468..a2333d87fd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - productfooter +origin: theme --- # Hook displayFooterProduct @@ -18,8 +19,6 @@ hookAliases: - productfooter - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/product.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/product.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md index f8eeb97e50..322a18b9c2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md +++ b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayGDPRConsent @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md index 752025280e..b7f16550b0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md @@ -8,6 +8,7 @@ files: locations: - front office type: display +origin: theme --- # Hook displayHeaderCategory @@ -25,6 +26,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/listing/product-list.tpl](https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md index add7cc56fd..2237d9d1d4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - extraLeft +origin: theme --- # Hook displayLeftColumn @@ -35,6 +36,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md index 3cc0df6328..df653e43f2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - extraLeft +origin: theme --- # Hook displayLeftColumnProduct @@ -18,8 +19,6 @@ hookAliases: - extraLeft - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md index a126ae2201..d706de1b7b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md @@ -10,16 +10,11 @@ locations: type: display hookAliases: - myAccountBlock +origin: theme --- # Hook displayMyAccountBlock -## Aliases - - - myAccountBlock - - - ## Information {{% notice tip %}} @@ -28,10 +23,12 @@ hookAliases: This hook displays extra information within the 'my account' block" {{% /notice %}} -Hook locations: - - front office - -Hook type: display +| Hook | displayMyAccountBlock | +| --- | --- | +| Locations | front office | +| Type | display | +| Origin | theme | +| Aliases | myAccountBlock | Located in: - [Classic Theme: modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayNav1.md b/modules/concepts/hooks/list-of-hooks/displayNav1.md index 39d2f8ecda..5c1ce4b2d4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav1.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav1.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayNav1 @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayNav2.md b/modules/concepts/hooks/list-of-hooks/displayNav2.md index 26e8a017ff..35345399f5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav2.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav2.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayNav2 @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md index a38ab901e1..0552845359 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md +++ b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayNavFullWidth @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md index 74838fd63d..6f42de8bc5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md +++ b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayNewsletterRegistration @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayNotFound.md b/modules/concepts/hooks/list-of-hooks/displayNotFound.md index cb3ef51d1b..35deb02ddf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNotFound.md +++ b/modules/concepts/hooks/list-of-hooks/displayNotFound.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayNotFound @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/errors/not-found.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md index f34e998b4d..879f27ecba 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayOrderConfirmation1 @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/order-confirmation.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md index e3b5535615..fc6c1c8cf3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayOrderConfirmation2 @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/order-confirmation.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md index f54d325aad..ce87d2fa0e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayPaymentByBinaries @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/steps/payment.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md index 5fbf30d154..c13be52f99 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - paymentTop +origin: theme --- # Hook displayPaymentTop @@ -18,8 +19,6 @@ hookAliases: - paymentTop - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/steps/payment.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md index fecb78339b..8199e8a4b5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayPersonalInformationTop @@ -26,6 +27,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/steps/personal-information.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/personal-information.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayProductActions.md b/modules/concepts/hooks/list-of-hooks/displayProductActions.md index 3cee6796f9..762c2553f4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductActions.md @@ -9,6 +9,7 @@ locations: - front office type: action hookAliases: +origin: theme --- # Hook displayProductActions @@ -26,6 +27,8 @@ Hook locations: Hook type: action +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/_partials/product-add-to-cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-add-to-cart.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md index f7687ae748..0688391cad 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md @@ -11,6 +11,7 @@ type: display hookAliases: - productActions - displayProductButtons +origin: theme --- # Hook displayProductAdditionalInfo @@ -33,6 +34,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/_partials/quickview.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/quickview.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md index 103b77ab28..c973841d2e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayProductListReviews @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/catalog/_partials/miniatures/product.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/miniatures/product.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md index ae6172de4d..c101d24f52 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayProductPriceBlock @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/order-confirmation-table.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/order-confirmation-table.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayReassurance.md b/modules/concepts/hooks/list-of-hooks/displayReassurance.md index 1e8c09f1d0..dba68237e7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayReassurance.md +++ b/modules/concepts/hooks/list-of-hooks/displayReassurance.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displayReassurance @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/checkout.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/checkout.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md index d113004dd7..d922827ff3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - extraRight +origin: theme --- # Hook displayRightColumn @@ -35,6 +36,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md index 5903838480..90f96e8e9a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - extraRight +origin: theme --- # Hook displayRightColumnProduct @@ -18,8 +19,6 @@ hookAliases: - extraRight - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displaySearch.md b/modules/concepts/hooks/list-of-hooks/displaySearch.md index f81fcf2453..6d448eb562 100644 --- a/modules/concepts/hooks/list-of-hooks/displaySearch.md +++ b/modules/concepts/hooks/list-of-hooks/displaySearch.md @@ -9,6 +9,7 @@ locations: - front office type: display hookAliases: +origin: theme --- # Hook displaySearch @@ -20,6 +21,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/errors/not-found.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md index c77399c318..a75cefe1df 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - shoppingCartExtra +origin: theme --- # Hook displayShoppingCart @@ -18,8 +19,6 @@ hookAliases: - shoppingCartExtra - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md index a68011980a..244f685ff8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - shoppingCart +origin: theme --- # Hook displayShoppingCartFooter @@ -18,8 +19,6 @@ hookAliases: - shoppingCart - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl) diff --git a/modules/concepts/hooks/list-of-hooks/displayTop.md b/modules/concepts/hooks/list-of-hooks/displayTop.md index adea71239e..645f168d2e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayTop.md @@ -10,6 +10,7 @@ locations: type: display hookAliases: - top +origin: theme --- # Hook displayTop @@ -18,8 +19,6 @@ hookAliases: - top - - ## Information {{% notice tip %}} @@ -33,6 +32,8 @@ Hook locations: Hook type: display +Hook origin: theme + Located in: - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) From bda4a8717065f8cee85210449a5775c7689aa731 Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Fri, 6 Oct 2023 18:09:43 +0200 Subject: [PATCH 14/23] remove duplicated markdown and use a shortcode --- .../actionAfter.md | 30 ++++++------- .../actionBefore.md | 30 ++++++------- .../actionFormModifier.md | 30 ++++++------- ...actionListingFieldsModifier.md | 30 ++++++------- ...ctionListingResultsModifier.md | 30 ++++++------- .../actionOptionsModifier.md | 30 ++++++------- .../actionGridDataModifier.md | 33 +++++++------- ...ionGridDefinitionModifier.md | 33 +++++++------- ...ionGridFilterFormModifier.md | 33 +++++++------- ...tionGridPresenterModifier.md | 30 ++++++------- ...nGridQueryBuilderModifier.md | 33 +++++++------- .../actionFormBuilderModifier.md | 42 +++++++---------- .../actionFormDataProviderData.md | 33 +++++++------- ...onFormDataProviderDefaultData.md | 30 ++++++------- ...acyControllerName>ListingFieldsModifier.md | 30 ++++++------- ...cyControllerName>ListingResultsModifier.md | 30 ++++++------- .../list-of-hooks/actionAdminAfter.md | 30 ++++++------- .../actionAdminBefore.md | 30 ++++++------- .../list-of-hooks/actionAdminActivateAfter.md | 30 ++++++------- .../actionAdminActivateBefore.md | 30 ++++++------- ...rametersMetaControllerPostProcessBefore.md | 36 ++++++--------- ...inWebserviceControllerPostProcessBefore.md | 30 ++++++------- ...onControllerPostProcessBefore.md | 30 ++++++------- ...ministrationControllerPostProcessBefore.md | 36 ++++++--------- ...ceControllerPostProcessBefore.md | 30 ++++++------- ...sPerformanceControllerPostProcessBefore.md | 36 ++++++--------- .../actionAdminControllerInitAfter.md | 36 ++++++--------- .../actionAdminControllerInitBefore.md | 36 ++++++--------- .../actionAdminControllerSetMedia.md | 30 ++++++------- .../actionAdminDeactivateAfter.md | 30 ++++++------- .../actionAdminDeactivateBefore.md | 30 ++++++------- .../list-of-hooks/actionAdminDeleteAfter.md | 30 ++++++------- .../list-of-hooks/actionAdminDeleteBefore.md | 30 ++++++------- .../actionAdminDuplicateAfter.md | 30 ++++++------- .../actionAdminDuplicateBefore.md | 30 ++++++------- ...onControllerPostProcessBefore.md | 30 ++++++------- ...lGeolocationControllerPostProcessBefore.md | 36 ++++++--------- ...onControllerPostProcessBefore.md | 30 ++++++------- ...LocalizationControllerPostProcessBefore.md | 36 ++++++--------- .../actionAdminLoginControllerBefore.md | 36 ++++++--------- .../actionAdminLoginControllerForgotAfter.md | 36 ++++++--------- .../actionAdminLoginControllerForgotBefore.md | 36 ++++++--------- .../actionAdminLoginControllerLoginAfter.md | 36 ++++++--------- .../actionAdminLoginControllerLoginBefore.md | 36 ++++++--------- .../actionAdminLoginControllerResetAfter.md | 36 ++++++--------- .../actionAdminLoginControllerResetBefore.md | 36 ++++++--------- .../actionAdminLoginControllerSetMedia.md | 36 ++++++--------- ...ionAdminLogsControllerPostProcessBefore.md | 30 ++++++------- ...nMaintenanceControllerPostProcessBefore.md | 30 ++++++------- .../actionAdminMetaAfterWriteRobotsFile.md | 30 ++++++------- .../actionAdminMetaBeforeWriteRobotsFile.md | 30 ++++++------- .../list-of-hooks/actionAdminMetaSave.md | 42 ++++++----------- .../actionAdminOrdersTrackingNumberUpdate.md | 36 ++++++--------- ...nPreferencesControllerPostProcessBefore.md | 30 ++++++------- ...ionAdminProductsControllerActivateAfter.md | 30 ++++++------- ...onAdminProductsControllerActivateBefore.md | 30 ++++++------- ...nAdminProductsControllerDeactivateAfter.md | 30 ++++++------- ...AdminProductsControllerDeactivateBefore.md | 30 ++++++------- ...ctionAdminProductsControllerDeleteAfter.md | 30 ++++++------- ...tionAdminProductsControllerDeleteBefore.md | 30 ++++++------- ...onAdminProductsControllerDuplicateAfter.md | 30 ++++++------- ...nAdminProductsControllerDuplicateBefore.md | 30 ++++++------- .../actionAdminProductsControllerSortAfter.md | 30 ++++++------- ...actionAdminProductsControllerSortBefore.md | 30 ++++++------- ...ctionAdminProductsListingFieldsModifier.md | 30 ++++++------- ...tionAdminProductsListingResultsModifier.md | 30 ++++++------- ...dminSecurityControllerPostProcessBefore.md | 36 ++++++--------- ...gPreferencesControllerPostProcessBefore.md | 36 ++++++--------- ...ntrollerPostProcessCarrierOptionsBefore.md | 36 ++++++--------- ...ncesControllerPostProcessHandlingBefore.md | 36 ++++++--------- ...taControllerPostProcessBefore.md | 30 ++++++------- ...esControllerPostProcessBefore.md | 30 ++++++------- ...rPreferencesControllerPostProcessBefore.md | 36 ++++++--------- ...esControllerPostProcessBefore.md | 30 ++++++------- ...tPreferencesControllerPostProcessBefore.md | 30 ++++++------- .../list-of-hooks/actionAdminSortAfter.md | 30 ++++++------- .../list-of-hooks/actionAdminSortBefore.md | 30 ++++++------- ...AdminThemesControllerUpdateoptionsAfter.md | 30 ++++++------- .../actionAfterCreateFormHandler.md | 30 ++++++------- .../actionAfterUpdateFormHandler.md | 30 ++++++------- ...actionAjaxDieBefore.md | 30 ++++++------- .../list-of-hooks/actionAjaxDieBefore.md | 40 ++++++----------- .../actionAttributeCombinationDelete.md | 30 ++++++------- .../actionAttributeCombinationSave.md | 30 ++++++------- .../list-of-hooks/actionAttributeDelete.md | 42 ++++++----------- .../actionAttributeGroupDelete.md | 42 ++++++----------- .../list-of-hooks/actionAttributeGroupSave.md | 42 ++++++----------- .../list-of-hooks/actionAttributeSave.md | 42 ++++++----------- .../list-of-hooks/actionAuthentication.md | 42 ++++++----------- .../actionAuthenticationBefore.md | 36 ++++++--------- ...actionBeforeAjaxDie.md | 30 ++++++------- ...actionBeforeCreateFormHandler.md | 30 ++++++------- ...actionBeforeUpdateFormHandler.md | 30 ++++++------- .../actionBuildFrontEndObject.md | 36 ++++++--------- .../actionBuildMailLayoutVariables.md | 36 ++++++--------- .../list-of-hooks/actionCarrierProcess.md | 42 ++++++----------- .../list-of-hooks/actionCarrierUpdate.md | 42 ++++++----------- .../hooks/list-of-hooks/actionCartSave.md | 42 ++++++----------- .../hooks/list-of-hooks/actionCartSummary.md | 30 ++++++------- .../actionCartUpdateQuantityBefore.md | 36 ++++++--------- .../hooks/list-of-hooks/actionCategoryAdd.md | 42 ++++++----------- .../list-of-hooks/actionCategoryDelete.md | 42 ++++++----------- .../list-of-hooks/actionCategoryUpdate.md | 42 ++++++----------- .../list-of-hooks/actionCheckoutRender.md | 36 ++++++--------- .../hooks/list-of-hooks/actionClearCache.md | 36 ++++++--------- .../list-of-hooks/actionClearCompileCache.md | 36 ++++++--------- .../list-of-hooks/actionClearSf2Cache.md | 36 ++++++--------- .../actionControllerInitAfter.md | 36 ++++++--------- .../actionControllerInitBefore.md | 36 ++++++--------- .../list-of-hooks/actionCustomerAccountAdd.md | 42 ++++++----------- .../actionCustomerAccountUpdate.md | 36 ++++++--------- .../list-of-hooks/actionCustomerAddGroups.md | 30 ++++++------- .../actionCustomerBeforeUpdateGroup.md | 30 ++++++------- .../actionCustomerLogoutAfter.md | 36 ++++++--------- .../actionCustomerLogoutBefore.md | 36 ++++++--------- .../list-of-hooks/actionDeleteGDPRCustomer.md | 31 ++++++------- .../actionDeliveryPriceByPrice.md | 30 ++++++------- .../actionDeliveryPriceByWeight.md | 30 ++++++------- .../hooks/list-of-hooks/actionDispatcher.md | 30 ++++++------- .../list-of-hooks/actionDispatcherAfter.md | 36 ++++++--------- .../list-of-hooks/actionDispatcherBefore.md | 36 ++++++--------- .../list-of-hooks/actionDownloadAttachment.md | 30 ++++++------- .../actionEmailAddAfterContent.md | 38 ++++++---------- .../actionEmailAddBeforeContent.md | 38 ++++++---------- .../list-of-hooks/actionEmailSendBefore.md | 38 ++++++---------- .../list-of-hooks/actionExportGDPRData.md | 34 +++++++------- .../list-of-hooks/actionFeatureDelete.md | 42 ++++++----------- .../hooks/list-of-hooks/actionFeatureSave.md | 42 ++++++----------- .../list-of-hooks/actionFeatureValueDelete.md | 42 ++++++----------- .../list-of-hooks/actionFeatureValueSave.md | 42 ++++++----------- .../actionFilterDeliveryOptionList.md | 36 ++++++--------- .../actionFrontControllerInitAfter.md | 42 ++++++----------- .../actionFrontControllerInitBefore.md | 36 ++++++--------- .../actionFrontControllerSetMedia.md | 30 ++++++------- .../actionFrontControllerSetVariables.md | 38 ++++++---------- .../actionGenerateDocumentReference.md | 35 ++++++--------- .../actionGetAdminOrderButtons.md | 36 ++++++--------- .../actionGetAdminToolbarButtons.md | 36 ++++++--------- .../actionGetAlternativeSearchPanels.md | 38 ++++++---------- .../actionGetExtraMailTemplateVars.md | 32 ++++++------- .../actionGetIDZoneByAddressID.md | 30 ++++++------- .../actionGetMailLayoutTransformations.md | 36 ++++++--------- .../actionGetProductPropertiesAfter.md | 34 ++++++-------- ...ctionGetProductPropertiesAfterUnitPrice.md | 36 ++++++--------- .../actionGetProductPropertiesBefore.md | 30 ++++++------- .../list-of-hooks/actionHtaccessCreate.md | 42 ++++++----------- .../actionInvoiceNumberFormatted.md | 30 ++++++------- .../list-of-hooks/actionListMailThemes.md | 36 ++++++--------- .../hooks/list-of-hooks/actionListModules.md | 29 +++++------- .../list-of-hooks/actionLoggerLogMessage.md | 35 ++++++--------- .../actionMailAlterMessageBeforeSend.md | 30 ++++++------- .../actionModifyFrontendSitemap.md | 35 ++++++--------- .../list-of-hooks/actionModuleInstallAfter.md | 34 ++++++-------- .../actionModuleInstallBefore.md | 34 ++++++-------- .../actionModuleMailAlertSendCustomer.md | 31 ++++++------- .../actionModuleRegisterHookAfter.md | 30 ++++++------- .../actionModuleRegisterHookBefore.md | 30 ++++++------- .../actionModuleUnRegisterHookAfter.md | 30 ++++++------- .../actionModuleUnRegisterHookBefore.md | 30 ++++++------- .../actionModuleUninstallAfter.md | 34 ++++++-------- .../actionModuleUninstallBefore.md | 34 ++++++-------- .../actionNewsletterRegistrationAfter.md | 31 ++++++------- .../actionNewsletterRegistrationBefore.md | 31 ++++++------- .../actionObjectAddAfter.md | 33 +++++++------- .../actionObjectAddBefore.md | 33 +++++++------- .../actionObjectDeleteAfter.md | 33 +++++++------- .../actionObjectDeleteBefore.md | 33 +++++++------- .../actionObjectUpdateAfter.md | 33 +++++++------- .../actionObjectUpdateBefore.md | 33 +++++++------- .../list-of-hooks/actionObjectAddAfter.md | 33 +++++++------- .../list-of-hooks/actionObjectAddBefore.md | 33 +++++++------- .../actionObjectAttributeAddBefore.md | 33 +++++++------- .../actionObjectAttributeGroupAddBefore.md | 33 +++++++------- .../list-of-hooks/actionObjectDeleteAfter.md | 33 +++++++------- .../list-of-hooks/actionObjectDeleteBefore.md | 33 +++++++------- ...actionObjectProductCommentValidateAfter.md | 34 ++++++-------- .../actionObjectProductInCartDeleteAfter.md | 39 +++++++--------- .../actionObjectProductInCartDeleteBefore.md | 41 +++++++---------- .../list-of-hooks/actionObjectUpdateAfter.md | 33 +++++++------- .../list-of-hooks/actionObjectUpdateBefore.md | 33 +++++++------- .../list-of-hooks/actionOnImageCutAfter.md | 30 ++++++------- .../list-of-hooks/actionOnImageResizeAfter.md | 30 ++++++------- .../hooks/list-of-hooks/actionOrderEdited.md | 36 ++++++--------- .../actionOrderHistoryAddAfter.md | 30 ++++++------- .../hooks/list-of-hooks/actionOrderReturn.md | 42 ++++++----------- .../hooks/list-of-hooks/actionOrderSlipAdd.md | 42 ++++++----------- .../actionOrderStatusPostUpdate.md | 41 ++++++----------- .../list-of-hooks/actionOrderStatusUpdate.md | 42 ++++++----------- .../list-of-hooks/actionOutputHTMLBefore.md | 36 ++++++--------- .../actionOverrideEmployeeImage.md | 36 ++++++--------- .../list-of-hooks/actionPDFInvoiceRender.md | 30 ++++++------- .../list-of-hooks/actionPasswordRenew.md | 30 ++++++------- .../hooks/list-of-hooks/actionPaymentCCAdd.md | 42 ++++++----------- .../actionPaymentConfirmation.md | 42 ++++++----------- .../hooks/list-of-hooks/actionPresentCart.md | 36 ++++++--------- .../list-of-hooks/actionPresentModule.md | 30 ++++++------- .../hooks/list-of-hooks/actionPresentOrder.md | 36 ++++++--------- .../list-of-hooks/actionPresentOrderReturn.md | 36 ++++++--------- .../actionPresentPaymentOptions.md | 36 ++++++--------- .../list-of-hooks/actionPresentProduct.md | 36 ++++++--------- .../actionPresentProductListing.md | 36 ++++++--------- .../list-of-hooks/actionProductActivation.md | 30 ++++++------- .../hooks/list-of-hooks/actionProductAdd.md | 42 ++++++----------- .../actionProductAttributeDelete.md | 42 ++++++----------- .../actionProductAttributeUpdate.md | 42 ++++++----------- .../list-of-hooks/actionProductCancel.md | 42 ++++++----------- .../list-of-hooks/actionProductCoverage.md | 30 ++++++------- .../list-of-hooks/actionProductDelete.md | 42 ++++++----------- .../list-of-hooks/actionProductOutOfStock.md | 41 ++++++----------- .../actionProductPriceCalculation.md | 36 ++++++--------- .../hooks/list-of-hooks/actionProductSave.md | 42 ++++++----------- .../list-of-hooks/actionProductSearchAfter.md | 37 ++++++--------- ...ctionProductSearchProviderRunQueryAfter.md | 36 ++++++--------- ...tionProductSearchProviderRunQueryBefore.md | 36 ++++++--------- .../list-of-hooks/actionProductUpdate.md | 42 ++++++----------- .../hooks/list-of-hooks/actionSearch.md | 30 ++++++------- .../hooks/list-of-hooks/actionSetInvoice.md | 30 ++++++------- .../actionShopDataDuplication.md | 30 ++++++------- .../actionSubmitAccountBefore.md | 36 ++++++--------- .../actionSubmitCustomerAddressForm.md | 30 ++++++------- .../list-of-hooks/actionUpdateLangAfter.md | 36 ++++++--------- .../list-of-hooks/actionUpdateQuantity.md | 42 ++++++----------- .../actionValidateCustomerAddressForm.md | 36 ++++++--------- .../list-of-hooks/actionValidateOrder.md | 42 ++++++----------- .../list-of-hooks/actionValidateOrderAfter.md | 36 ++++++--------- .../actionValidateStepComplete.md | 30 ++++++------- .../hooks/list-of-hooks/actionWatermark.md | 40 ++++++----------- .../list-of-hooks/actionWishlistAddProduct.md | 31 ++++++------- .../list-of-hooks/addWebserviceResources.md | 42 +++++++---------- .../additionalCustomerAddressFields.md | 40 +++++++---------- .../additionalCustomerFormFields.md | 40 +++++++---------- .../hooks/list-of-hooks/dashboardData.md | 34 +++++++------- .../hooks/list-of-hooks/dashboardZoneOne.md | 32 +++++++------ .../hooks/list-of-hooks/dashboardZoneThree.md | 38 +++++++--------- .../hooks/list-of-hooks/dashboardZoneTwo.md | 32 +++++++------ .../list-of-hooks/deleteProductAttribute.md | 32 +++++++------ .../displayAdditionalCustomerAddressFields.md | 37 ++++++--------- .../displayAddressSelectorBottom.md | 37 ++++++--------- .../list-of-hooks/displayAdminAfterHeader.md | 30 ++++++------- .../list-of-hooks/displayAdminCustomers.md | 42 ++++++----------- .../list-of-hooks/displayAdminEndContent.md | 36 ++++++--------- .../hooks/list-of-hooks/displayAdminForm.md | 30 ++++++------- .../displayAdminGridTableAfter.md | 42 ++++++----------- .../displayAdminGridTableBefore.md | 42 ++++++----------- .../list-of-hooks/displayAdminListAfter.md | 30 ++++++------- .../list-of-hooks/displayAdminListBefore.md | 30 ++++++------- .../displayAdminNavBarBeforeEnd.md | 30 ++++++------- .../list-of-hooks/displayAdminOptions.md | 30 ++++++------- .../hooks/list-of-hooks/displayAdminOrder.md | 40 ++++++----------- .../displayAdminOrderCreateExtraButtons.md | 36 ++++++--------- .../list-of-hooks/displayAdminOrderMain.md | 36 ++++++--------- .../displayAdminOrderMainBottom.md | 36 ++++++--------- .../list-of-hooks/displayAdminOrderSide.md | 40 ++++++----------- .../displayAdminOrderSideBottom.md | 30 ++++++------- .../displayAdminOrderTabContent.md | 34 ++++++-------- .../list-of-hooks/displayAdminOrderTabLink.md | 34 ++++++-------- .../list-of-hooks/displayAdminOrderTop.md | 36 ++++++--------- .../displayAdminProductsCombinationBottom.md | 36 ++++++--------- .../displayAdminProductsExtra.md | 36 ++++++--------- ...ayAdminProductsMainStepLeftColumnBottom.md | 36 ++++++--------- ...ayAdminProductsMainStepLeftColumnMiddle.md | 36 ++++++--------- ...yAdminProductsMainStepRightColumnBottom.md | 36 ++++++--------- .../displayAdminProductsOptionsStepBottom.md | 36 ++++++--------- .../displayAdminProductsOptionsStepTop.md | 36 ++++++--------- .../displayAdminProductsPriceStepBottom.md | 36 ++++++--------- ...isplayAdminProductsQuantitiesStepBottom.md | 36 ++++++--------- .../displayAdminProductsSeoStepBottom.md | 36 ++++++--------- .../displayAdminProductsShippingStepBottom.md | 36 ++++++--------- .../displayAdminStatsGraphEngine.md | 36 +++++++-------- .../displayAdminStatsGridEngine.md | 32 +++++++------ .../list-of-hooks/displayAdminStatsModules.md | 42 ++++++----------- .../displayAdminThemesListAfter.md | 36 ++++++--------- .../hooks/list-of-hooks/displayAdminView.md | 30 ++++++------- .../displayAfterBodyOpeningTag.md | 37 ++++++--------- .../list-of-hooks/displayAfterCarrier.md | 36 ++++++--------- .../displayAfterProductThumbs.md | 37 ++++++--------- .../list-of-hooks/displayAfterTitleTag.md | 37 ++++++--------- .../list-of-hooks/displayAttributeForm.md | 36 +++++++-------- .../displayBackOfficeCategory.md | 35 ++++++--------- .../displayBackOfficeEmployeeMenu.md | 35 ++++++--------- .../list-of-hooks/displayBackOfficeHeader.md | 41 ++++++----------- .../list-of-hooks/displayBackOfficeTop.md | 41 ++++++----------- .../hooks/list-of-hooks/displayBanner.md | 37 ++++++--------- .../displayBeforeBodyClosingTag.md | 37 ++++++--------- .../list-of-hooks/displayBeforeCarrier.md | 42 ++++++----------- .../displayCMSDisputeInformation.md | 31 ++++++------- .../list-of-hooks/displayCMSPrintButton.md | 31 ++++++------- .../displayCarrierExtraContent.md | 36 ++++++--------- .../displayCartExtraProductActions.md | 37 ++++++--------- .../list-of-hooks/displayCartModalContent.md | 37 ++++++--------- .../list-of-hooks/displayCartModalFooter.md | 37 ++++++--------- .../displayCheckoutBeforeConfirmation.md | 37 ++++++--------- .../displayCheckoutSubtotalDetails.md | 31 ++++++------- .../displayCheckoutSummaryTop.md | 37 ++++++--------- .../list-of-hooks/displayContactContent.md | 43 +++++++----------- .../list-of-hooks/displayContactLeftColumn.md | 43 +++++++----------- .../displayContactRightColumn.md | 43 +++++++----------- .../displayCrossSellingShoppingCart.md | 31 ++++++------- .../list-of-hooks/displayCustomerAccount.md | 43 ++++++------------ .../displayCustomerAccountForm.md | 42 ++++++----------- .../displayCustomerAccountFormTop.md | 42 ++++++----------- .../displayCustomerLoginFormAfter.md | 37 ++++++--------- .../list-of-hooks/displayCustomization.md | 30 ++++++------- .../displayDashboardToolbarIcons.md | 36 ++++++--------- .../displayDashboardToolbarTopMenu.md | 36 ++++++--------- .../list-of-hooks/displayDashboardTop.md | 36 ++++++--------- .../displayEmptyModuleCategoryExtraMessage.md | 36 ++++++--------- .../list-of-hooks/displayExpressCheckout.md | 31 ++++++------- .../hooks/list-of-hooks/displayFeatureForm.md | 42 ++++++----------- .../displayFeaturePostProcess.md | 42 ++++++----------- .../list-of-hooks/displayFeatureValueForm.md | 41 ++++++----------- .../displayFeatureValuePostProcess.md | 42 ++++++----------- .../hooks/list-of-hooks/displayFooter.md | 39 +++++----------- .../hooks/list-of-hooks/displayFooterAfter.md | 31 ++++++------- .../list-of-hooks/displayFooterBefore.md | 31 ++++++------- .../list-of-hooks/displayFooterCategory.md | 35 +++++---------- .../list-of-hooks/displayFooterProduct.md | 41 ++++++----------- .../hooks/list-of-hooks/displayGDPRConsent.md | 31 ++++++------- .../hooks/list-of-hooks/displayHeader.md | 42 ++++++----------- .../list-of-hooks/displayHeaderCategory.md | 35 +++++---------- .../hooks/list-of-hooks/displayHome.md | 42 ++++++----------- .../displayInvoiceLegalFreeText.md | 36 ++++++--------- .../hooks/list-of-hooks/displayLeftColumn.md | 45 ++++++------------- .../list-of-hooks/displayLeftColumnProduct.md | 41 ++++++----------- .../hooks/list-of-hooks/displayMaintenance.md | 36 ++++++--------- .../displayModuleConfigureExtraButtons.md | 34 ++++++-------- .../list-of-hooks/displayMyAccountBlock.md | 36 +++++---------- .../hooks/list-of-hooks/displayNav1.md | 31 ++++++------- .../hooks/list-of-hooks/displayNav2.md | 31 ++++++------- .../list-of-hooks/displayNavFullWidth.md | 35 +++++---------- .../displayNewsletterRegistration.md | 31 ++++++------- .../hooks/list-of-hooks/displayNotFound.md | 31 ++++++------- .../list-of-hooks/displayOrderConfirmation.md | 42 ++++++----------- .../displayOrderConfirmation1.md | 31 ++++++------- .../displayOrderConfirmation2.md | 31 ++++++------- .../hooks/list-of-hooks/displayOrderDetail.md | 42 ++++++----------- .../list-of-hooks/displayOrderPreview.md | 30 ++++++------- .../list-of-hooks/displayOverrideTemplate.md | 35 ++++++--------- .../list-of-hooks/displayPaymentByBinaries.md | 37 ++++++--------- .../list-of-hooks/displayPaymentReturn.md | 42 ++++++----------- .../hooks/list-of-hooks/displayPaymentTop.md | 41 ++++++----------- .../displayPersonalInformationTop.md | 37 ++++++--------- .../list-of-hooks/displayProductActions.md | 37 ++++++--------- .../displayProductAdditionalInfo.md | 44 ++++++------------ .../displayProductListReviews.md | 31 ++++++------- .../list-of-hooks/displayProductPriceBlock.md | 31 ++++++------- .../hooks/list-of-hooks/displayReassurance.md | 31 ++++++------- .../hooks/list-of-hooks/displayRightColumn.md | 45 ++++++------------- .../displayRightColumnProduct.md | 41 ++++++----------- .../hooks/list-of-hooks/displaySearch.md | 31 ++++++------- .../list-of-hooks/displayShoppingCart.md | 41 ++++++----------- .../displayShoppingCartFooter.md | 41 ++++++----------- .../hooks/list-of-hooks/displayTop.md | 41 ++++++----------- .../list-of-hooks/filterCategoryContent.md | 38 +++++++--------- .../list-of-hooks/filterCmsCategoryContent.md | 38 +++++++--------- .../hooks/list-of-hooks/filterCmsContent.md | 38 +++++++--------- .../hooks/list-of-hooks/filterHtmlContent.md | 38 +++++++--------- .../filterManufacturerContent.md | 38 +++++++--------- .../list-of-hooks/filterProductContent.md | 38 +++++++--------- .../list-of-hooks/filterProductSearch.md | 36 +++++++-------- .../list-of-hooks/filterSupplierContent.md | 38 +++++++--------- .../hooks/list-of-hooks/gSitemapAppendUrls.md | 32 +++++++------ .../hooks/list-of-hooks/legacyblockkpi.md | 30 ++++++------- .../hooks/list-of-hooks/moduleRoutes.md | 40 +++++++---------- .../list-of-hooks/overrideLayoutTemplate.md | 30 ++++++------- .../overrideMinimalPurchasePrice.md | 30 ++++++------- .../list-of-hooks/productSearchProvider.md | 32 +++++++------ .../sendMailAlterTemplateVars.md | 36 +++++++-------- .../hooks/list-of-hooks/termsAndConditions.md | 32 +++++++------ .../validateCustomerFormFields.md | 38 +++++++--------- 370 files changed, 5167 insertions(+), 7809 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/actionAfter.md b/modules/concepts/hooks/list-of-hooks/actionAfter.md index 3f85d6b7db..fa7d22ed56 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfter.md @@ -2,29 +2,27 @@ menuTitle: actionAfter Title: actionAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook action<ClassName><Action>After - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('action' . get_class($this) . ucfirst($this->action) . 'After', ['controller' => $this, 'return' => $return]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionBefore.md b/modules/concepts/hooks/list-of-hooks/actionBefore.md index f82c07039d..96b986e807 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionBefore.md @@ -2,29 +2,27 @@ menuTitle: actionBefore Title: actionBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook action<ClassName><Action>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('action' . get_class($this) . ucfirst($this->action) . 'Before', ['controller' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFormModifier.md b/modules/concepts/hooks/list-of-hooks/actionFormModifier.md index 1d1f53ea27..324980dfba 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormModifier.md @@ -2,26 +2,24 @@ menuTitle: actionFormModifier Title: actionFormModifier hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook action<Controller>FormModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -32,4 +30,4 @@ Hook::exec('action' . $this->controller_name . 'FormModifier', [ 'fields_value' => &$fields_value, 'form_vars' => &$this->tpl_form_vars, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md index 9c109c2e21..9b2fd08897 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md @@ -2,26 +2,24 @@ menuTitle: actionListingFieldsModifier Title: actionListingFieldsModifier hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook action<Controller>ListingFieldsModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -29,4 +27,4 @@ Located in: Hook::exec('action' . $this->controller_name . 'ListingFieldsModifier', [ 'fields' => &$this->fields_list, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md index 5cccabd373..3a956d9abc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md @@ -2,26 +2,24 @@ menuTitle: actionListingResultsModifier Title: actionListingResultsModifier hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook action<Controller>ListingResultsModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ Hook::exec('action' . $this->controller_name . 'ListingResultsModifier', [ 'list' => &$this->_list, 'list_total' => &$this->_listTotal, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md b/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md index cd37aefa69..c18d12b6dd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md @@ -2,26 +2,24 @@ menuTitle: actionOptionsModifier Title: actionOptionsModifier hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook action<Controller>OptionsModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ Hook::exec('action' . $this->controller_name . 'OptionsModifier', [ 'options' => &$this->fields_options, 'option_vars' => &$this->tpl_option_vars, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md index e379973a5b..3fb72fb0aa 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md @@ -2,28 +2,25 @@ menuTitle: actionGridDataModifier Title: actionGridDataModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Grid/GridFactory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/GridFactory.php' + file: src/Core/Grid/GridFactory.php locations: - - front office - - back office + - 'front office' + - 'back office' type: action -hookAliases: ---- - -# Hook action<DefinitionId>GridDataModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - - back office - -Hook type: action +--- -Located in: - - [src/Core/Grid/GridFactory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/GridFactory.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -31,4 +28,4 @@ Located in: $this->hookDispatcher->dispatchWithParameters('action' . Container::camelize($definition->getId()) . 'GridDataModifier', [ 'data' => &$data, ]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md index 1d1bb1dbc2..922e038f6b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md @@ -2,29 +2,26 @@ menuTitle: actionGridDefinitionModifier Title: actionGridDefinitionModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Grid/Definition/Factory/AbstractGridDefinitionFactory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Definition/Factory/AbstractGridDefinitionFactory.php' + file: src/Core/Grid/Definition/Factory/AbstractGridDefinitionFactory.php locations: - - front office - - back office + - 'front office' + - 'back office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook action<DefinitionId>GridDefinitionModifier - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - - back office - -Hook type: action +--- -Located in: - - [src/Core/Grid/Definition/Factory/AbstractGridDefinitionFactory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Definition/Factory/AbstractGridDefinitionFactory.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -40,4 +37,4 @@ This hook has been implemented as an example in our [modules examples repository This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform1](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform1). -This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform3](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform3](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3). diff --git a/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md index 3ce4b5c6db..1f16972b2c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md @@ -2,28 +2,25 @@ menuTitle: actionGridFilterFormModifier Title: actionGridFilterFormModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Grid/Filter/GridFilterFormFactory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Filter/GridFilterFormFactory.php' + file: src/Core/Grid/Filter/GridFilterFormFactory.php locations: - - front office - - back office + - 'front office' + - 'back office' type: action -hookAliases: ---- - -# Hook action<DefinitionId>GridFilterFormModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - - back office - -Hook type: action +--- -Located in: - - [src/Core/Grid/Filter/GridFilterFormFactory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Filter/GridFilterFormFactory.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -31,4 +28,4 @@ Located in: $this->hookDispatcher->dispatchWithParameters('action' . Container::camelize($definition->getId()) . 'GridFilterFormModifier', [ 'filter_form_builder' => $formBuilder, ]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md index 2bcc99fee4..b381d9e9ba 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md @@ -2,26 +2,24 @@ menuTitle: actionGridPresenterModifier Title: actionGridPresenterModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Grid/Presenter/GridPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Presenter/GridPresenter.php' + file: src/Core/Grid/Presenter/GridPresenter.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook action<DefinitionId>GridPresenterModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/Grid/Presenter/GridPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Presenter/GridPresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -29,4 +27,4 @@ Located in: dispatchWithParameters('action' . Container::camelize($definition->getId()) . 'GridPresenterModifier', [ 'presented_grid' => &$presentedGrid, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md index ae5ad04988..10d957703d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md @@ -2,29 +2,26 @@ menuTitle: actionGridQueryBuilderModifier Title: actionGridQueryBuilderModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Grid/Data/Factory/DoctrineGridDataFactory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Data/Factory/DoctrineGridDataFactory.php' + file: src/Core/Grid/Data/Factory/DoctrineGridDataFactory.php locations: - - front office - - back office + - 'front office' + - 'back office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook action<DefinitionId>GridQueryBuilderModifier - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - - back office - -Hook type: action +--- -Located in: - - [src/Core/Grid/Data/Factory/DoctrineGridDataFactory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Data/Factory/DoctrineGridDataFactory.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -40,4 +37,4 @@ $this->hookDispatcher->dispatchWithParameters('action' . Container::camelize($th This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform1](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform1). -This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform3](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform3](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3). diff --git a/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md b/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md index 18d4dea813..5250a44fba 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md @@ -1,37 +1,27 @@ --- -menuTitle: action<FormName>FormBuilderModifier +menuTitle: 'action<FormName>FormBuilderModifier' Title: actionFormBuilderModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Form/IdentifiableObject/Builder/FormBuilder.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php' + file: src/Core/Form/IdentifiableObject/Builder/FormBuilder.php locations: - - front office - - back office + - 'front office' + - 'back office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook action<Object>FormBuilderModifier - -## Information - -{{% notice tip %}} -**Modify an identifiable object form content:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook allows to modify an identifiable object forms content by modifying form builder data or FormBuilder itself.\nReplace FormBuilderName by the identitiable object type." -This hook allows to modify an identifiable object forms content by modifying form builder data or FormBuilder itself. -Replace FormBuilderName by the identitiable object type. -{{% /notice %}} - -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [src/Core/Form/IdentifiableObject/Builder/FormBuilder.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -54,4 +44,4 @@ This hook has been implemented as an example in our [modules examples repository This hook has been implemented as an example in our [modules examples repository - demoproductform](https://github.com/PrestaShop/example-modules/tree/master/demoproductform). -This hook has been described in the context of Product Page in Back Office in [Extending the new product page form page]({{< relref "/8/modules/sample-modules/extend-product-page" >}}) \ No newline at end of file +This hook has been described in the context of Product Page in Back Office in [Extending the new product page form page]({{< relref "/8/modules/sample-modules/extend-product-page" >}}) diff --git a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md index 0211ece7c0..bae10c556c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md @@ -2,28 +2,25 @@ menuTitle: actionFormDataProviderData Title: actionFormDataProviderData hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Form/IdentifiableObject/Builder/FormBuilder.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php' + file: src/Core/Form/IdentifiableObject/Builder/FormBuilder.php locations: - - front office - - back office + - 'front office' + - 'back office' type: action -hookAliases: ---- - -# Hook action<FormName>FormDataProviderData - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - - back office - -Hook type: action +--- -Located in: - - [src/Core/Form/IdentifiableObject/Builder/FormBuilder.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -36,4 +33,4 @@ $this->hookDispatcher->dispatchWithParameters( 'options' => &$options, ] ); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md index 228ae1e31a..7349be39a1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md @@ -2,26 +2,24 @@ menuTitle: actionFormDataProviderDefaultData Title: actionFormDataProviderDefaultData hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Form/IdentifiableObject/Builder/FormBuilder.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php' + file: src/Core/Form/IdentifiableObject/Builder/FormBuilder.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook action<FormName>FormDataProviderDefaultData - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/Form/IdentifiableObject/Builder/FormBuilder.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -33,4 +31,4 @@ dispatchWithParameters( 'options' => &$options, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md index 0282f988a8..524854ae17 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md @@ -2,26 +2,24 @@ menuTitle: actionListingFieldsModifier Title: actionListingFieldsModifier hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php' + file: src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook action<LegacyControllerName>ListingFieldsModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +33,4 @@ dispatchWithParameters('action' . $helperListConfiguration->legacyControllerName 'order_way' => &$helperListConfiguration->orderWay, 'fields' => &$helperListConfiguration->fieldsList, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md index e60476eac7..6a99237a42 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md @@ -2,26 +2,24 @@ menuTitle: actionListingResultsModifier Title: actionListingResultsModifier hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php' + file: src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook action<LegacyControllerName>ListingResultsModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters('action' . $helperListConfiguration->legacyControllerName 'list' => &$helperListConfiguration->list, 'list_total' => &$helperListConfiguration->listTotal, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md index 42680ecc08..fd2f7afd3a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md @@ -2,29 +2,27 @@ menuTitle: actionAdminAfter Title: actionAdminAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdmin<Action>After - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAdmin' . ucfirst($this->action) . 'After', ['controller' => $this, 'return' => $return]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md index f1501e8659..ad27ea45d7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md @@ -2,29 +2,27 @@ menuTitle: actionAdminBefore Title: actionAdminBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdmin<Action>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAdmin' . ucfirst($this->action) . 'Before', ['controller' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md index 01fa337bf7..27095fa7ab 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminActivateAfter Title: actionAdminActivateAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminActivateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminActivateAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md index 6184bec2fc..9f2b79708b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminActivateBefore Title: actionAdminActivateBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminActivateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminActivateBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md index e99b826882..a3158ed8f2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminAdminShopParametersMetaControllerPostProcessBefore Title: actionAdminAdminShopParametersMetaControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Configure Shop Parameters Meta Controller +hookTitle: 'On post-process in Admin Configure Shop Parameters Meta Controller' files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminAdminShopParametersMetaControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Configure Shop Parameters Meta Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Configure Shop Parameters Meta post-process before processing any form' -This hook is called on Admin Configure Shop Parameters Meta post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminAdminShopParametersMetaControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md index faf4dde2af..01ce578629 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md @@ -2,29 +2,27 @@ menuTitle: actionAdminAdminWebserviceControllerPostProcessBefore Title: actionAdminAdminWebserviceControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/WebserviceController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/WebserviceController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/WebserviceController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminAdminWebserviceControllerPostProcessBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/WebserviceController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/WebserviceController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminAdminWebserviceControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md index 8e56a9a491..83ace81c4f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminAdministrationControllerPostProcessBefore Title: actionAdminAdministrationControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminAdministrationControllerPostProcess<HookName>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchHook( 'actionAdminAdministrationControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md index d4f0eeb2db..c8b91b2970 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminAdministrationControllerPostProcessBefore Title: actionAdminAdministrationControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Configure Advanced Parameters Administration Controller +hookTitle: 'On post-process in Admin Configure Advanced Parameters Administration Controller' files: - - src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminAdministrationControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Configure Advanced Parameters Administration Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Configure Advanced Parameters Administration post-process before processing any form' -This hook is called on Admin Configure Advanced Parameters Administration post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminAdministrationControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md index 1862f0b2a9..fd0f643ffd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore Title: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminAdvancedParametersPerformanceControllerPostProcess<HookName>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchHook( 'actionAdminAdvancedParametersPerformanceControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md index f45d2dc628..75b0cc9b29 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore Title: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Configure Advanced Parameters Performance Controller +hookTitle: 'On post-process in Admin Configure Advanced Parameters Performance Controller' files: - - src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminAdvancedParametersPerformanceControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Configure Advanced Parameters Performance Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Configure Advanced Parameters Performance post-process before processing any form' -This hook is called on Admin Configure Advanced Parameters Performance post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminAdvancedParametersPerformanceControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md index dd539f9292..2dd2cca6ab 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md @@ -2,32 +2,24 @@ menuTitle: actionAdminControllerInitAfter Title: actionAdminControllerInitAfter hidden: true -hookTitle: Perform actions after admin controller initialization +hookTitle: 'Perform actions after admin controller initialization' files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminControllerInitAfter - -## Information - -{{% notice tip %}} -**Perform actions after admin controller initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched after the initialization of all admin controllers' -This hook is launched after the initialization of all admin controllers -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md index 61352e1996..8520c35755 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md @@ -2,32 +2,24 @@ menuTitle: actionAdminControllerInitBefore Title: actionAdminControllerInitBefore hidden: true -hookTitle: Perform actions before admin controller initialization +hookTitle: 'Perform actions before admin controller initialization' files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminControllerInitBefore - -## Information - -{{% notice tip %}} -**Perform actions before admin controller initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched before the initialization of all admin controllers' -This hook is launched before the initialization of all admin controllers -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md index 8bd9a308a0..38df087ea6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md @@ -2,27 +2,25 @@ menuTitle: actionAdminControllerSetMedia Title: actionAdminControllerSetMedia hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Bridge/AdminController/LegacyControllerBridge.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/AdminController/LegacyControllerBridge.php' + file: src/PrestaShopBundle/Bridge/AdminController/LegacyControllerBridge.php locations: - - back office + - 'back office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionAdminControllerSetMedia - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Bridge/AdminController/LegacyControllerBridge.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/AdminController/LegacyControllerBridge.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -32,4 +30,4 @@ dispatchWithParameters('actionAdminControllerSetMedia') ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demoextendgrid](https://github.com/PrestaShop/example-modules/tree/master/demoextendgrid). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demoextendgrid](https://github.com/PrestaShop/example-modules/tree/master/demoextendgrid). diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md index d0a16d7f85..cf608aaa17 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminDeactivateAfter Title: actionAdminDeactivateAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminDeactivateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminDeactivateAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md index 36236706e2..b3adb14a8f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminDeactivateBefore Title: actionAdminDeactivateBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminDeactivateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminDeactivateBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md index 08734f6e6b..4cf4005fb5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminDeleteAfter Title: actionAdminDeleteAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminDeleteAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminDeleteAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md index c885572004..0bb42a1d93 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminDeleteBefore Title: actionAdminDeleteBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminDeleteBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminDeleteBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md index 1dd5a9b861..ced3c43f4f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminDuplicateAfter Title: actionAdminDuplicateAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminDuplicateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminDuplicateAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md index 1e90adca44..6877eb379e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminDuplicateBefore Title: actionAdminDuplicateBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminDuplicateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminDuplicateBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md index 47f09afd9e..958758475a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminInternationalGeolocationControllerPostProcessBefore Title: actionAdminInternationalGeolocationControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php' + file: src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminInternationalGeolocationControllerPostProcess<HookName>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchHook( 'actionAdminInternationalGeolocationControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md index 236b207c22..3c56c87776 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminInternationalGeolocationControllerPostProcessBefore Title: actionAdminInternationalGeolocationControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Improve International Geolocation Controller +hookTitle: 'On post-process in Admin Improve International Geolocation Controller' files: - - src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php' + file: src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminInternationalGeolocationControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Improve International Geolocation Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Improve International Geolocation post-process before processing any form' -This hook is called on Admin Improve International Geolocation post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminInternationalGeolocationControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md index 3283c4f341..3dc8c9d249 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminInternationalLocalizationControllerPostProcessBefore Title: actionAdminInternationalLocalizationControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php' + file: src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminInternationalLocalizationControllerPostProcess<HookName>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchHook( 'actionAdminInternationalLocalizationControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md index 2cfe43e37b..3a6a13a18f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminInternationalLocalizationControllerPostProcessBefore Title: actionAdminInternationalLocalizationControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Improve International Localization Controller +hookTitle: 'On post-process in Admin Improve International Localization Controller' files: - - src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php' + file: src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminInternationalLocalizationControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Improve International Localization Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Improve International Localization post-process before processing any form' -This hook is called on Admin Improve International Localization post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminInternationalLocalizationControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md index 12f9205bc5..296668cc24 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerBefore Title: actionAdminLoginControllerBefore hidden: true -hookTitle: Perform actions before admin login controller initialization +hookTitle: 'Perform actions before admin login controller initialization' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerBefore - -## Information - -{{% notice tip %}} -**Perform actions before admin login controller initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched before the initialization of the login controller' -This hook is launched before the initialization of the login controller -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md index c4e5a0e325..6cf49ebab3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerForgotAfter Title: actionAdminLoginControllerForgotAfter hidden: true -hookTitle: Perform actions after admin login controller forgot action initialization +hookTitle: 'Perform actions after admin login controller forgot action initialization' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerForgotAfter - -## Information - -{{% notice tip %}} -**Perform actions after admin login controller forgot action initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched after the initialization of the forgot action in login controller' -This hook is launched after the initialization of the forgot action in login controller -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -39,4 +31,4 @@ Hook::exec( 'employee' => $employee, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md index 8dc59189e4..ccb095109d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerForgotBefore Title: actionAdminLoginControllerForgotBefore hidden: true -hookTitle: Perform actions before admin login controller forgot action initialization +hookTitle: 'Perform actions before admin login controller forgot action initialization' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerForgotBefore - -## Information - -{{% notice tip %}} -**Perform actions before admin login controller forgot action initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched before the initialization of the forgot action in login controller' -This hook is launched before the initialization of the forgot action in login controller -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -39,4 +31,4 @@ Hook::exec( 'email' => $email, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md index b86e779355..640b28cb71 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerLoginAfter Title: actionAdminLoginControllerLoginAfter hidden: true -hookTitle: Perform actions after admin login controller login action initialization +hookTitle: 'Perform actions after admin login controller login action initialization' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerLoginAfter - -## Information - -{{% notice tip %}} -**Perform actions after admin login controller login action initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched after the initialization of the login action in login controller' -This hook is launched after the initialization of the login action in login controller -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -40,4 +32,4 @@ Hook::exec( 'redirect' => $url, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md index d973911162..276b45502b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerLoginBefore Title: actionAdminLoginControllerLoginBefore hidden: true -hookTitle: Perform actions before admin login controller login action initialization +hookTitle: 'Perform actions before admin login controller login action initialization' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerLoginBefore - -## Information - -{{% notice tip %}} -**Perform actions before admin login controller login action initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched before the initialization of the login action in login controller' -This hook is launched before the initialization of the login action in login controller -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -40,4 +32,4 @@ Hook::exec( 'email' => $email, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md index 63a0f6d542..49baba2330 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerResetAfter Title: actionAdminLoginControllerResetAfter hidden: true -hookTitle: Perform actions after admin login controller reset action initialization +hookTitle: 'Perform actions after admin login controller reset action initialization' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerResetAfter - -## Information - -{{% notice tip %}} -**Perform actions after admin login controller reset action initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched after the initialization of the reset action in login controller' -This hook is launched after the initialization of the reset action in login controller -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -39,4 +31,4 @@ Hook::exec( 'employee' => $employee, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md index e1cc55da35..ef630984bd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerResetBefore Title: actionAdminLoginControllerResetBefore hidden: true -hookTitle: Perform actions before admin login controller reset action initialization +hookTitle: 'Perform actions before admin login controller reset action initialization' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerResetBefore - -## Information - -{{% notice tip %}} -**Perform actions before admin login controller reset action initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched before the initialization of the reset action in login controller' -This hook is launched before the initialization of the reset action in login controller -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -43,4 +35,4 @@ Hook::exec( 'reset_confirm' => $reset_confirm, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md index 91a35cb990..dd4c29c0b7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md @@ -2,32 +2,24 @@ menuTitle: actionAdminLoginControllerSetMedia Title: actionAdminLoginControllerSetMedia hidden: true -hookTitle: Set media on admin login page header +hookTitle: 'Set media on admin login page header' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php' + file: controllers/admin/AdminLoginController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLoginControllerSetMedia - -## Information - -{{% notice tip %}} -**Set media on admin login page header:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called after adding media to admin login page header' -This hook is called after adding media to admin login page header -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminLoginController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminLoginController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md index 530c6e844b..044e82c1fb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md @@ -2,29 +2,27 @@ menuTitle: actionAdminLogsControllerPostProcessBefore Title: actionAdminLogsControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/LogsController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/LogsController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/LogsController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminLogsControllerPostProcessBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/LogsController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/LogsController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminLogsControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md index c5b02f4fe0..93af650679 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md @@ -2,29 +2,27 @@ menuTitle: actionAdminMaintenanceControllerPostProcessBefore Title: actionAdminMaintenanceControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MaintenanceController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MaintenanceController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MaintenanceController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminMaintenanceControllerPostProcessBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MaintenanceController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MaintenanceController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminMaintenanceControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md index bfb9ab72de..49e7949b32 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md @@ -2,26 +2,24 @@ menuTitle: actionAdminMetaAfterWriteRobotsFile Title: actionAdminMetaAfterWriteRobotsFile hidden: true -hookTitle: +hookTitle: null files: - - classes/Tools.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php' + file: classes/Tools.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminMetaAfterWriteRobotsFile - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/Tools.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php) +{{% hookDescriptor %}} ## Parameters details @@ -40,4 +38,4 @@ Hook::exec('actionAdminMetaAfterWriteRobotsFile', [ 'rb_data' => $robots_content, 'write_fd' => &$write_fd, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md index 5fb4316a7c..908c9c4f29 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md @@ -2,26 +2,24 @@ menuTitle: actionAdminMetaBeforeWriteRobotsFile Title: actionAdminMetaBeforeWriteRobotsFile hidden: true -hookTitle: +hookTitle: null files: - - classes/Tools.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php' + file: classes/Tools.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminMetaBeforeWriteRobotsFile - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/Tools.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php) +{{% hookDescriptor %}} ## Parameters details @@ -38,4 +36,4 @@ Located in: Hook::exec('actionAdminMetaBeforeWriteRobotsFile', [ 'rb_data' => &$robots_content, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md index 78ff30bac3..8f98481c37 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md @@ -2,42 +2,28 @@ menuTitle: actionAdminMetaSave Title: actionAdminMetaSave hidden: true -hookTitle: After saving the configuration in AdminMeta +hookTitle: 'After saving the configuration in AdminMeta' files: - - src/Adapter/Meta/CommandHandler/AddMetaHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Meta/CommandHandler/AddMetaHandler.php' + file: src/Adapter/Meta/CommandHandler/AddMetaHandler.php locations: - - back office + - 'back office' type: action hookAliases: - - afterSaveAdminMeta ---- - -# Hook actionAdminMetaSave - -## Aliases - - - afterSaveAdminMeta - - + - afterSaveAdminMeta +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed after saving the configuration in AdminMeta' -## Information - -{{% notice tip %}} -**After saving the configuration in AdminMeta:** - -This hook is displayed after saving the configuration in AdminMeta -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/Adapter/Meta/CommandHandler/AddMetaHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Meta/CommandHandler/AddMetaHandler.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchWithParameters('actionAdminMetaSave') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md b/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md index d238fabc04..a494efd442 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md @@ -2,32 +2,24 @@ menuTitle: actionAdminOrdersTrackingNumberUpdate Title: actionAdminOrdersTrackingNumberUpdate hidden: true -hookTitle: After setting the tracking number for the order +hookTitle: 'After setting the tracking number for the order' files: - - src/Adapter/Order/CommandHandler/UpdateOrderShippingDetailsHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/CommandHandler/UpdateOrderShippingDetailsHandler.php' + file: src/Adapter/Order/CommandHandler/UpdateOrderShippingDetailsHandler.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminOrdersTrackingNumberUpdate - -## Information - -{{% notice tip %}} -**After setting the tracking number for the order:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows you to execute code after the unique tracking number for the order was added' -This hook allows you to execute code after the unique tracking number for the order was added -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/Adapter/Order/CommandHandler/UpdateOrderShippingDetailsHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/CommandHandler/UpdateOrderShippingDetailsHandler.php) +{{% hookDescriptor %}} ## Parameters details @@ -48,4 +40,4 @@ Hook::exec('actionAdminOrdersTrackingNumberUpdate', [ 'customer' => $customer, 'carrier' => $carrier, ], null, false, true, false, $order->id_shop) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md index 27129d2c0c..ee75c19092 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md @@ -2,29 +2,27 @@ menuTitle: actionAdminPreferencesControllerPostProcessBefore Title: actionAdminPreferencesControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/PreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/PreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/PreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminPreferencesControllerPostProcessBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/PreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/PreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminPreferencesControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md index 6d6b29d0de..807e2f7762 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerActivateAfter Title: actionAdminProductsControllerActivateAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerActivateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerActivateAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md index 0e1d29afa8..06ac727cfc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerActivateBefore Title: actionAdminProductsControllerActivateBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerActivateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerActivateBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md index 9221268117..992865b7c4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerDeactivateAfter Title: actionAdminProductsControllerDeactivateAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerDeactivateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerDeactivateAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md index bc4fa4ec3e..57e8279545 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerDeactivateBefore Title: actionAdminProductsControllerDeactivateBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerDeactivateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerDeactivateBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md index bc438b9c35..522e63e19a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerDeleteAfter Title: actionAdminProductsControllerDeleteAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerDeleteAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerDeleteAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md index e947825513..e0d16d564e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerDeleteBefore Title: actionAdminProductsControllerDeleteBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerDeleteBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerDeleteBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md index 2f6ebcd83f..c5312b84b1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerDuplicateAfter Title: actionAdminProductsControllerDuplicateAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerDuplicateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerDuplicateAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md index 7f9db01f69..9cd278c936 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerDuplicateBefore Title: actionAdminProductsControllerDuplicateBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerDuplicateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerDuplicateBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md index ce4f70efc2..77e248a99b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerSortAfter Title: actionAdminProductsControllerSortAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerSortAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerSortAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md index 45f506d5ba..eedbddaac8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsControllerSortBefore Title: actionAdminProductsControllerSortBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsControllerSortBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminProductsControllerSortBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md index 9b012789a5..07bb7a7aae 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsListingFieldsModifier Title: actionAdminProductsListingFieldsModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/Product/AdminProductDataProvider.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataProvider.php' + file: src/Adapter/Product/AdminProductDataProvider.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsListingFieldsModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/Adapter/Product/AdminProductDataProvider.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataProvider.php) +{{% hookDescriptor %}} ## Parameters details @@ -49,4 +47,4 @@ Hook::exec('actionAdminProductsListingFieldsModifier', [ 'sql_order' => &$sqlOrder, 'sql_limit' => &$sqlLimit, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md index e513ce8c40..b160e8f164 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md @@ -2,26 +2,24 @@ menuTitle: actionAdminProductsListingResultsModifier Title: actionAdminProductsListingResultsModifier hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/Product/AdminProductDataProvider.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataProvider.php' + file: src/Adapter/Product/AdminProductDataProvider.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminProductsListingResultsModifier - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/Adapter/Product/AdminProductDataProvider.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataProvider.php) +{{% hookDescriptor %}} ## Parameters details @@ -42,4 +40,4 @@ Hook::exec('actionAdminProductsListingResultsModifier', [ 'products' => &$products, 'total' => $total, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md index c449b67fac..de2497b0d8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminSecurityControllerPostProcessBefore Title: actionAdminSecurityControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Security Controller +hookTitle: 'On post-process in Admin Security Controller' files: - - src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/SecurityController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/SecurityController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/SecurityController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminSecurityControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Security Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Security Controller post-process before processing any form' -This hook is called on Admin Security Controller post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/SecurityController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/SecurityController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminSecurityControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md index c03d465c10..11065ccc92 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminShippingPreferencesControllerPostProcessBefore Title: actionAdminShippingPreferencesControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Improve Shipping Preferences Controller +hookTitle: 'On post-process in Admin Improve Shipping Preferences Controller' files: - - src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShippingPreferencesControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Improve Shipping Preferences Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Improve Shipping Preferences post-process before processing any form' -This hook is called on Admin Improve Shipping Preferences post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminShippingPreferencesControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md index 5fe482826c..9e258d19c5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md @@ -2,32 +2,24 @@ menuTitle: actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore Title: actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore hidden: true -hookTitle: On post-process in Admin Improve Shipping Preferences Controller +hookTitle: 'On post-process in Admin Improve Shipping Preferences Controller' files: - - src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Improve Shipping Preferences Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Improve Shipping Preferences post-process before processing the Carrier Options form' -This hook is called on Admin Improve Shipping Preferences post-process before processing the Carrier Options form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -36,4 +28,4 @@ dispatchHook( 'actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md index b446423972..54032c5ea3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md @@ -2,32 +2,24 @@ menuTitle: actionAdminShippingPreferencesControllerPostProcessHandlingBefore Title: actionAdminShippingPreferencesControllerPostProcessHandlingBefore hidden: true -hookTitle: On post-process in Admin Improve Shipping Preferences Controller +hookTitle: 'On post-process in Admin Improve Shipping Preferences Controller' files: - - src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShippingPreferencesControllerPostProcessHandlingBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Improve Shipping Preferences Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Improve Shipping Preferences post-process before processing the Handling form' -This hook is called on Admin Improve Shipping Preferences post-process before processing the Handling form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/Shipping/PreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -36,4 +28,4 @@ dispatchHook( 'actionAdminShippingPreferencesControllerPostProcessHandlingBefore', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md index fd075c32af..3c463e4b35 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminShopParametersMetaControllerPostProcessBefore Title: actionAdminShopParametersMetaControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShopParametersMetaControllerPostProcess<HookName>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchHook( 'actionAdminShopParametersMetaControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md index 69abcd5896..ad62c30e0a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore Title: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShopParametersOrderPreferencesControllerPostProcess<HookName>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchHook( 'actionAdminShopParametersOrderPreferencesControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md index 85059885ce..7157cebac8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md @@ -2,35 +2,27 @@ menuTitle: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore Title: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore hidden: true -hookTitle: On post-process in Admin Configure Shop Parameters Order Preferences Controller +hookTitle: 'On post-process in Admin Configure Shop Parameters Order Preferences Controller' files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShopParametersOrderPreferencesControllerPostProcessBefore - -## Information - -{{% notice tip %}} -**On post-process in Admin Configure Shop Parameters Order Preferences Controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on Admin Configure Shop Parameters Order Preferences post-process before processing any form' -This hook is called on Admin Configure Shop Parameters Order Preferences post-process before processing any form -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminShopParametersOrderPreferencesControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md index 722c2e3161..0978385b30 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminShopParametersProductPreferencesControllerPostProcessBefore Title: actionAdminShopParametersProductPreferencesControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShopParametersProductPreferencesControllerPostProcess<HookName>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchHook( 'actionAdminShopParametersProductPreferencesControllerPostProcess' . $hookName . 'Before', ['controller' => $this] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md index e4af444857..d0e09ff2b1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md @@ -2,29 +2,27 @@ menuTitle: actionAdminShopParametersProductPreferencesControllerPostProcessBefore Title: actionAdminShopParametersProductPreferencesControllerPostProcessBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php' + file: src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminShopParametersProductPreferencesControllerPostProcessBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchHook('actionAdminShopParametersProductPreferencesControllerPostProcessBefore', ['controller' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md index 210c01c537..cd77b53e0f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md @@ -2,26 +2,24 @@ menuTitle: actionAdminSortAfter Title: actionAdminSortAfter hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminSortAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminSortAfter', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md index 7981b86350..4551e65f5f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAdminSortBefore Title: actionAdminSortBefore hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Controller/Admin/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' + file: src/PrestaShopBundle/Controller/Admin/ProductController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminSortBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters( 'actionAdminSortBefore', $hookEventParameters ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md index 103ec72fb1..df974d11cd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md @@ -2,29 +2,27 @@ menuTitle: actionAdminThemesControllerUpdateoptionsAfter Title: actionAdminThemesControllerUpdateoptionsAfter hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/Shop/CommandHandler/UploadLogosHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Shop/CommandHandler/UploadLogosHandler.php' + file: src/Adapter/Shop/CommandHandler/UploadLogosHandler.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionAdminThemesControllerUpdateoptionsAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/Adapter/Shop/CommandHandler/UploadLogosHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Shop/CommandHandler/UploadLogosHandler.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchWithParameters('actionAdminThemesControllerUpdate_optionsAfter') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md index ca334db74d..885b546651 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md @@ -2,27 +2,25 @@ menuTitle: actionAfterCreateFormHandler Title: actionAfterCreateFormHandler hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Form/IdentifiableObject/Handler/FormHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' + file: src/Core/Form/IdentifiableObject/Handler/FormHandler.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionAfterCreate<FormName>FormHandler - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/Form/IdentifiableObject/Handler/FormHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -39,4 +37,4 @@ This hook has been implemented as an example in our [modules examples repository This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform2](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform2). -This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform3](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform3](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3). diff --git a/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md index 7dd78ab963..218150efc6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md @@ -2,27 +2,25 @@ menuTitle: actionAfterUpdateFormHandler Title: actionAfterUpdateFormHandler hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Form/IdentifiableObject/Handler/FormHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' + file: src/Core/Form/IdentifiableObject/Handler/FormHandler.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionAfterUpdate<FormName>FormHandler - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/Form/IdentifiableObject/Handler/FormHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -41,4 +39,4 @@ This hook has been implemented as an example in our [modules examples repository This hook has been implemented as an example in our [modules examples repository - demoextendsymfonyform3](https://github.com/PrestaShop/example-modules/tree/master/demoextendsymfonyform3). -This hook has been implemented as an example in our [modules examples repository - demoproductform](https://github.com/PrestaShop/example-modules/tree/master/demoproductform). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demoproductform](https://github.com/PrestaShop/example-modules/tree/master/demoproductform). diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index 58c9cb4d4e..125a55b600 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -2,26 +2,24 @@ menuTitle: actionAjaxDieBefore Title: actionAjaxDieBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/Controller.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' + file: classes/controller/Controller.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionAjaxDie<Controller><Method>Before - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/Controller.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -39,4 +37,4 @@ Hook::exec('actionAjaxDie' . $controller . $method . 'Before', ['value' => &$val {{% notice note %}} Note that the `value` is now passed by reference -{{% /notice %}} \ No newline at end of file +{{% /notice %}} diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index c060004155..351ba83aa1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -2,40 +2,28 @@ menuTitle: actionAjaxDieBefore Title: actionAjaxDieBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/Controller.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' + file: classes/controller/Controller.php locations: - - front office + - 'front office' type: action hookAliases: - - actionBeforeAjaxDie ---- - -# Hook actionAjaxDieBefore - -## Aliases - - - actionBeforeAjaxDie - - + - actionBeforeAjaxDie +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -## Information - -{{% notice warning %}} -**Deprecated:** Since 1.6.1.1 -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/Controller.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAjaxDieBefore', ['controller' => $controller, 'method' => $method, 'value' => $value]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md index 6cafe75230..7af486453f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md @@ -2,29 +2,27 @@ menuTitle: actionAttributeCombinationDelete Title: actionAttributeCombinationDelete hidden: true -hookTitle: +hookTitle: null files: - - classes/Combination.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Combination.php' + file: classes/Combination.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionAttributeCombinationDelete - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Combination.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Combination.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAttributeCombinationDelete', ['id_product_attribute' => (int) $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md index fe0edfc372..2b895ff210 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md @@ -2,29 +2,27 @@ menuTitle: actionAttributeCombinationSave Title: actionAttributeCombinationSave hidden: true -hookTitle: +hookTitle: null files: - - classes/Combination.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Combination.php' + file: classes/Combination.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionAttributeCombinationSave - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Combination.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Combination.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAttributeCombinationSave', ['id_product_attribute' => (int) $this->id, 'id_attributes' => $idsAttribute]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md index 62870dae7f..cbf8f4547b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md @@ -2,42 +2,28 @@ menuTitle: actionAttributeDelete Title: actionAttributeDelete hidden: true -hookTitle: Deleting an attributes features value +hookTitle: 'Deleting an attributes features value' files: - - classes/ProductAttribute.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ProductAttribute.php' + file: classes/ProductAttribute.php locations: - - front office + - 'front office' type: action hookAliases: - - afterDeleteAttribute ---- - -# Hook actionAttributeDelete - -## Aliases - - - afterDeleteAttribute - - + - afterDeleteAttribute +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while deleting an attributes features value' -## Information - -{{% notice tip %}} -**Deleting an attributes features value:** - -This hook is called while deleting an attributes features value -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/ProductAttribute.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ProductAttribute.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAttributeDelete', ['id_attribute' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md index 5218b61d77..f5deb9948d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md @@ -2,42 +2,28 @@ menuTitle: actionAttributeGroupDelete Title: actionAttributeGroupDelete hidden: true -hookTitle: Deleting attribute group +hookTitle: 'Deleting attribute group' files: - - classes/AttributeGroup.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/AttributeGroup.php' + file: classes/AttributeGroup.php locations: - - front office + - 'front office' type: action hookAliases: - - afterDeleteAttributeGroup ---- - -# Hook actionAttributeGroupDelete - -## Aliases - - - afterDeleteAttributeGroup - - + - afterDeleteAttributeGroup +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while deleting an attributes group' -## Information - -{{% notice tip %}} -**Deleting attribute group:** - -This hook is called while deleting an attributes group -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/AttributeGroup.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/AttributeGroup.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAttributeGroupDelete', ['id_attribute_group' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md index 3ee7c220ca..e5bba08b77 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md @@ -2,42 +2,28 @@ menuTitle: actionAttributeGroupSave Title: actionAttributeGroupSave hidden: true -hookTitle: Saving an attribute group +hookTitle: 'Saving an attribute group' files: - - classes/AttributeGroup.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/AttributeGroup.php' + file: classes/AttributeGroup.php locations: - - front office + - 'front office' type: action hookAliases: - - afterSaveAttributeGroup ---- - -# Hook actionAttributeGroupSave - -## Aliases - - - afterSaveAttributeGroup - - + - afterSaveAttributeGroup +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while saving an attributes group' -## Information - -{{% notice tip %}} -**Saving an attribute group:** - -This hook is called while saving an attributes group -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/AttributeGroup.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/AttributeGroup.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAttributeGroupSave', ['id_attribute_group' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md index 6126477306..39b98946ef 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md @@ -2,42 +2,28 @@ menuTitle: actionAttributeSave Title: actionAttributeSave hidden: true -hookTitle: Saving an attributes features value +hookTitle: 'Saving an attributes features value' files: - - classes/ProductAttribute.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ProductAttribute.php' + file: classes/ProductAttribute.php locations: - - front office + - 'front office' type: action hookAliases: - - afterSaveAttribute ---- - -# Hook actionAttributeSave - -## Aliases - - - afterSaveAttribute - - + - afterSaveAttribute +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while saving an attributes features value' -## Information - -{{% notice tip %}} -**Saving an attributes features value:** - -This hook is called while saving an attributes features value -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/ProductAttribute.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ProductAttribute.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAttributeSave', ['id_attribute' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md index dc484bc22c..4128aebc80 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md @@ -2,42 +2,28 @@ menuTitle: actionAuthentication Title: actionAuthentication hidden: true -hookTitle: Successful customer authentication +hookTitle: 'Successful customer authentication' files: - - classes/form/CustomerLoginForm.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerLoginForm.php' + file: classes/form/CustomerLoginForm.php locations: - - front office + - 'front office' type: action hookAliases: - - authentication ---- - -# Hook actionAuthentication - -## Aliases - - - authentication - - + - authentication +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed after a customer successfully signs in' -## Information - -{{% notice tip %}} -**Successful customer authentication:** - -This hook is displayed after a customer successfully signs in -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/form/CustomerLoginForm.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerLoginForm.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAuthentication', ['customer' => $this->context->customer]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md index 538d723efc..24e5d15831 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md @@ -2,36 +2,28 @@ menuTitle: actionAuthenticationBefore Title: actionAuthenticationBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/form/CustomerLoginForm.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerLoginForm.php' + file: classes/form/CustomerLoginForm.php locations: - - front office + - 'front office' type: action hookAliases: - - actionBeforeAuthentication ---- - -# Hook actionAuthenticationBefore - -## Aliases - - - actionBeforeAuthentication - + - actionBeforeAuthentication +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' +--- -## Information - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/form/CustomerLoginForm.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerLoginForm.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionAuthenticationBefore') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md b/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md index 6ed7674dc3..416f2e89ad 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md @@ -2,29 +2,27 @@ menuTitle: actionBeforeAjaxDie Title: actionBeforeAjaxDie hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/Controller.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' + file: classes/controller/Controller.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionBeforeAjaxDie<Controller><Method> - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/Controller.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionBeforeAjaxDie' . $controller . $method, ['value' => $value]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md index ee34f16c1e..1c6235af7b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md @@ -2,26 +2,24 @@ menuTitle: actionBeforeCreateFormHandler Title: actionBeforeCreateFormHandler hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Form/IdentifiableObject/Handler/FormHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' + file: src/Core/Form/IdentifiableObject/Handler/FormHandler.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionBeforeCreate<FormName>FormHandler - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/Form/IdentifiableObject/Handler/FormHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -31,4 +29,4 @@ dispatchWithParameters( 'form_data' => &$data, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md index fb5e522500..62b6e180e9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md @@ -2,26 +2,24 @@ menuTitle: actionBeforeUpdateFormHandler Title: actionBeforeUpdateFormHandler hidden: true -hookTitle: +hookTitle: null files: - - src/Core/Form/IdentifiableObject/Handler/FormHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' + file: src/Core/Form/IdentifiableObject/Handler/FormHandler.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionBeforeUpdate<FormName>FormHandler - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/Form/IdentifiableObject/Handler/FormHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -30,4 +28,4 @@ dispatchWithParameters('actionBeforeUpdate' . Container::camelize($form->getName 'form_data' => &$data, 'id' => $id, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md b/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md index 2823c423ea..70e8391e09 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md +++ b/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md @@ -2,32 +2,24 @@ menuTitle: actionBuildFrontEndObject Title: actionBuildFrontEndObject hidden: true -hookTitle: Manage elements added to the "prestashop" javascript object +hookTitle: 'Manage elements added to the "prestashop" javascript object' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionBuildFrontEndObject - -## Information - -{{% notice tip %}} -**Manage elements added to the "prestashop" javascript object:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows you to customize the "prestashop" javascript object that is included in all front office pages' -This hook allows you to customize the "prestashop" javascript object that is included in all front office pages -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionBuildFrontEndObject', [ 'obj' => &$object, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md b/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md index b88733c1c7..917235dcf2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md +++ b/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md @@ -2,33 +2,25 @@ menuTitle: actionBuildMailLayoutVariables Title: actionBuildMailLayoutVariables hidden: true -hookTitle: Build the variables used in email layout rendering +hookTitle: 'Build the variables used in email layout rendering' files: - - src/Core/MailTemplate/Layout/LayoutVariablesBuilder.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/MailTemplate/Layout/LayoutVariablesBuilder.php' + file: src/Core/MailTemplate/Layout/LayoutVariablesBuilder.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionBuildMailLayoutVariables - -## Information - -{{% notice tip %}} -**Build the variables used in email layout rendering:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows to change the variables used when an email layout is rendered' -This hook allows to change the variables used when an email layout is rendered -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/MailTemplate/Layout/LayoutVariablesBuilder.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/MailTemplate/Layout/LayoutVariablesBuilder.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -44,4 +36,4 @@ dispatchWithParameters( ## Example implementation -This hook has been implemented as an example in our [modules examples repository - example_module_mailtheme](https://github.com/PrestaShop/example-modules/blob/master/example_module_mailtheme). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - example_module_mailtheme](https://github.com/PrestaShop/example-modules/blob/master/example_module_mailtheme). diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md index 4e26a1994d..b21e38f676 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md @@ -2,42 +2,28 @@ menuTitle: actionCarrierProcess Title: actionCarrierProcess hidden: true -hookTitle: Carrier process +hookTitle: 'Carrier process' files: - - classes/checkout/CheckoutDeliveryStep.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php' + file: classes/checkout/CheckoutDeliveryStep.php locations: - - front office + - 'front office' type: action hookAliases: - - processCarrier ---- - -# Hook actionCarrierProcess - -## Aliases - - - processCarrier - - - -## Information + - processCarrier +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**Carrier process:** - - -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/checkout/CheckoutDeliveryStep.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCarrierProcess', ['cart' => $this->getCheckoutSession()->getCart()]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md index 98edc837d9..8424e518d5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md @@ -2,39 +2,25 @@ menuTitle: actionCarrierUpdate Title: actionCarrierUpdate hidden: true -hookTitle: Carrier Update +hookTitle: 'Carrier Update' files: - - controllers/admin/AdminCarriersController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminCarriersController.php' + file: controllers/admin/AdminCarriersController.php locations: - - back office + - 'back office' type: action hookAliases: - - updateCarrier ---- - -# Hook actionCarrierUpdate - -## Aliases - - - updateCarrier - - + - updateCarrier +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when a carrier is updated' -## Information - -{{% notice tip %}} -**Carrier Update:** - -This hook is called when a carrier is updated -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminCarriersController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminCarriersController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -43,4 +29,4 @@ Hook::exec('actionCarrierUpdate', [ 'id_carrier' => (int) $current_carrier->id, 'carrier' => $new_carrier, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCartSave.md b/modules/concepts/hooks/list-of-hooks/actionCartSave.md index c7cb5f3f42..2cfd790a95 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartSave.md @@ -2,42 +2,28 @@ menuTitle: actionCartSave Title: actionCartSave hidden: true -hookTitle: Cart creation and update +hookTitle: 'Cart creation and update' files: - - classes/Cart.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php' + file: classes/Cart.php locations: - - front office + - 'front office' type: action hookAliases: - - cart ---- - -# Hook actionCartSave - -## Aliases - - - cart - - + - cart +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is displayed when a product is added to the cart or if the cart's content is modified" -## Information - -{{% notice tip %}} -**Cart creation and update:** - -This hook is displayed when a product is added to the cart or if the cart's content is modified -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Cart.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCartSave', ['cart' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCartSummary.md b/modules/concepts/hooks/list-of-hooks/actionCartSummary.md index 8be5ff8dec..63a571b028 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartSummary.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartSummary.md @@ -2,29 +2,27 @@ menuTitle: actionCartSummary Title: actionCartSummary hidden: true -hookTitle: +hookTitle: null files: - - classes/Cart.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php' + file: classes/Cart.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionCartSummary - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Cart.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCartSummary', $summary, null, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md index c52d7bc6db..775aaf98f2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md @@ -2,36 +2,28 @@ menuTitle: actionCartUpdateQuantityBefore Title: actionCartUpdateQuantityBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/Cart.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php' + file: classes/Cart.php locations: - - front office + - 'front office' type: action hookAliases: - - actionBeforeCartUpdateQty ---- - -# Hook actionCartUpdateQuantityBefore - -## Aliases - - - actionBeforeCartUpdateQty - + - actionBeforeCartUpdateQty +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' +--- -## Information - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/Cart.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCartUpdateQuantityBefore', $data) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md index 8f99010ac1..08c5f581b8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md @@ -2,42 +2,28 @@ menuTitle: actionCategoryAdd Title: actionCategoryAdd hidden: true -hookTitle: Category creation +hookTitle: 'Category creation' files: - - classes/Category.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Category.php' + file: classes/Category.php locations: - - front office + - 'front office' type: action hookAliases: - - categoryAddition ---- - -# Hook actionCategoryAdd - -## Aliases - - - categoryAddition - - + - categoryAddition +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed when a category is created' -## Information - -{{% notice tip %}} -**Category creation:** - -This hook is displayed when a category is created -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Category.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Category.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCategoryAdd', ['category' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md index 978c641891..f25fcb351b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md @@ -2,42 +2,28 @@ menuTitle: actionCategoryDelete Title: actionCategoryDelete hidden: true -hookTitle: Category deletion +hookTitle: 'Category deletion' files: - - classes/Category.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Category.php' + file: classes/Category.php locations: - - front office + - 'front office' type: action hookAliases: - - categoryDeletion ---- - -# Hook actionCategoryDelete - -## Aliases - - - categoryDeletion - - + - categoryDeletion +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed when a category is deleted' -## Information - -{{% notice tip %}} -**Category deletion:** - -This hook is displayed when a category is deleted -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Category.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Category.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCategoryDelete', ['category' => $this, 'deleted_children' => $deletedChildren]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md index e5a235ee31..762cd8c8fd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md @@ -2,42 +2,28 @@ menuTitle: actionCategoryUpdate Title: actionCategoryUpdate hidden: true -hookTitle: Category modification +hookTitle: 'Category modification' files: - - controllers/admin/AdminProductsController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminProductsController.php' + file: controllers/admin/AdminProductsController.php locations: - - back office + - 'back office' type: action hookAliases: - - categoryUpdate ---- - -# Hook actionCategoryUpdate - -## Aliases - - - categoryUpdate - - + - categoryUpdate +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed when a category is modified' -## Information - -{{% notice tip %}} -**Category modification:** - -This hook is displayed when a category is modified -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminProductsController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminProductsController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCategoryUpdate', ['category' => $category]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md b/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md index 1ce6917cf5..27310a99c9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md +++ b/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md @@ -2,35 +2,27 @@ menuTitle: actionCheckoutRender Title: actionCheckoutRender hidden: true -hookTitle: Modify checkout process +hookTitle: 'Modify checkout process' files: - - controllers/front/OrderController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderController.php' + file: controllers/front/OrderController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionCheckoutRender - -## Information - -{{% notice tip %}} -**Modify checkout process:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when constructing the checkout process' -This hook is called when constructing the checkout process -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [controllers/front/OrderController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCheckoutRender', ['checkoutProcess' => &$this->checkoutProcess]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionClearCache.md b/modules/concepts/hooks/list-of-hooks/actionClearCache.md index 5c38d14fce..824e5b51cc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearCache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearCache.md @@ -2,35 +2,27 @@ menuTitle: actionClearCache Title: actionClearCache hidden: true -hookTitle: Clear smarty cache +hookTitle: 'Clear smarty cache' files: - - classes/Tools.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php' + file: classes/Tools.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionClearCache - -## Information - -{{% notice tip %}} -**Clear smarty cache:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is called when smarty's cache is cleared" -This hook is called when smarty's cache is cleared -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Tools.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionClearCache') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md b/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md index b9063e6ddf..af8e1e2909 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md @@ -2,35 +2,27 @@ menuTitle: actionClearCompileCache Title: actionClearCompileCache hidden: true -hookTitle: Clear smarty compile cache +hookTitle: 'Clear smarty compile cache' files: - - classes/Tools.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php' + file: classes/Tools.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionClearCompileCache - -## Information - -{{% notice tip %}} -**Clear smarty compile cache:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is called when smarty's compile cache is cleared" -This hook is called when smarty's compile cache is cleared -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Tools.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionClearCompileCache') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md b/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md index fa521292df..5cb44d24ff 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md @@ -2,35 +2,27 @@ menuTitle: actionClearSf2Cache Title: actionClearSf2Cache hidden: true -hookTitle: Clear Sf2 cache +hookTitle: 'Clear Sf2 cache' files: - - src/Adapter/Cache/Clearer/SymfonyCacheClearer.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Cache/Clearer/SymfonyCacheClearer.php' + file: src/Adapter/Cache/Clearer/SymfonyCacheClearer.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionClearSf2Cache - -## Information - -{{% notice tip %}} -**Clear Sf2 cache:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when the Symfony cache is cleared' -This hook is called when the Symfony cache is cleared -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Cache/Clearer/SymfonyCacheClearer.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Cache/Clearer/SymfonyCacheClearer.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionClearSf2Cache') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md index e4b3aed5fd..aedef9e9c6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md @@ -2,32 +2,24 @@ menuTitle: actionControllerInitAfter Title: actionControllerInitAfter hidden: true -hookTitle: Perform actions after controller initialization +hookTitle: 'Perform actions after controller initialization' files: - - classes/controller/Controller.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' + file: classes/controller/Controller.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionControllerInitAfter - -## Information - -{{% notice tip %}} -**Perform actions after controller initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched after the initialization of all controllers' -This hook is launched after the initialization of all controllers -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/Controller.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md index 83b2d6d16e..eeebafd63e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md @@ -2,32 +2,24 @@ menuTitle: actionControllerInitBefore Title: actionControllerInitBefore hidden: true -hookTitle: Perform actions before controller initialization +hookTitle: 'Perform actions before controller initialization' files: - - classes/controller/Controller.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' + file: classes/controller/Controller.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionControllerInitBefore - -## Information - -{{% notice tip %}} -**Perform actions before controller initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched before the initialization of all controllers' -This hook is launched before the initialization of all controllers -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/Controller.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md index dbdc78b542..312ee20f62 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md @@ -2,39 +2,25 @@ menuTitle: actionCustomerAccountAdd Title: actionCustomerAccountAdd hidden: true -hookTitle: Successful customer account creation +hookTitle: 'Successful customer account creation' files: - - classes/form/CustomerPersister.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerPersister.php' + file: classes/form/CustomerPersister.php locations: - - front office + - 'front office' type: action hookAliases: - - createAccount ---- - -# Hook actionCustomerAccountAdd - -## Aliases - - - createAccount - - - -## Information + - createAccount +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when a new customer creates an account successfully' -{{% notice tip %}} -**Successful customer account creation:** - -This hook is called when a new customer creates an account successfully -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/form/CustomerPersister.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerPersister.php) +{{% hookDescriptor %}} ## Parameters details @@ -51,4 +37,4 @@ Located in: Hook::exec('actionCustomerAccountAdd', [ 'newCustomer' => $customer, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md index 68b0c45888..407e44f133 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md @@ -2,32 +2,24 @@ menuTitle: actionCustomerAccountUpdate Title: actionCustomerAccountUpdate hidden: true -hookTitle: Successful customer account update +hookTitle: 'Successful customer account update' files: - - classes/form/CustomerPersister.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerPersister.php' + file: classes/form/CustomerPersister.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionCustomerAccountUpdate - -## Information - -{{% notice tip %}} -**Successful customer account update:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when a customer updates its account successfully' -This hook is called when a customer updates its account successfully -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/form/CustomerPersister.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerPersister.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionCustomerAccountUpdate', [ 'customer' => $customer, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md index 66e0acd3e5..75b657a749 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md @@ -2,29 +2,27 @@ menuTitle: actionCustomerAddGroups Title: actionCustomerAddGroups hidden: true -hookTitle: +hookTitle: null files: - - classes/Customer.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php' + file: classes/Customer.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionCustomerAddGroups - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Customer.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCustomerAddGroups', ['id_customer' => $this->id, 'groups' => $groups]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md b/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md index 9eef48e939..f72e1532ad 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md @@ -2,29 +2,27 @@ menuTitle: actionCustomerBeforeUpdateGroup Title: actionCustomerBeforeUpdateGroup hidden: true -hookTitle: +hookTitle: null files: - - classes/Customer.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php' + file: classes/Customer.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionCustomerBeforeUpdateGroup - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Customer.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCustomerBeforeUpdateGroup', ['id_customer' => $this->id, 'groups' => $list]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md index 7d96b759ef..f7642057f2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md @@ -2,35 +2,27 @@ menuTitle: actionCustomerLogoutAfter Title: actionCustomerLogoutAfter hidden: true -hookTitle: After customer logout +hookTitle: 'After customer logout' files: - - classes/Customer.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php' + file: classes/Customer.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionCustomerLogoutAfter - -## Information - -{{% notice tip %}} -**After customer logout:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows you to execute code after customer logout' -This hook allows you to execute code after customer logout -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Customer.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCustomerLogoutAfter', ['customer' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md index 3d5000a54c..1fc7b1462c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md @@ -2,35 +2,27 @@ menuTitle: actionCustomerLogoutBefore Title: actionCustomerLogoutBefore hidden: true -hookTitle: Before customer logout +hookTitle: 'Before customer logout' files: - - classes/Customer.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php' + file: classes/Customer.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionCustomerLogoutBefore - -## Information - -{{% notice tip %}} -**Before customer logout:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows you to execute code before customer logout' -This hook allows you to execute code before customer logout -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Customer.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionCustomerLogoutBefore', ['customer' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md index 0906a72a3c..7d03c5632f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md @@ -2,32 +2,27 @@ menuTitle: actionDeleteGDPRCustomer Title: actionDeleteGDPRCustomer hidden: true -hookTitle: +hookTitle: null files: - - modules/psgdpr/psgdpr.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php' + file: modules/psgdpr/psgdpr.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: module ---- - -# Hook actionDeleteGDPRCustomer - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/psgdpr/psgdpr.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionDeleteGDPRCustomer', $customer, $module['id_module']) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md index 3e3159a87e..a95b141643 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md @@ -2,29 +2,27 @@ menuTitle: actionDeliveryPriceByPrice Title: actionDeliveryPriceByPrice hidden: true -hookTitle: +hookTitle: null files: - - classes/Carrier.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Carrier.php' + file: classes/Carrier.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionDeliveryPriceByPrice - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Carrier.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Carrier.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionDeliveryPriceByPrice', ['id_carrier' => $id_carrier, 'order_total' => $order_total, 'id_zone' => $id_zone]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md index 640c323cfd..46238d68e9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md @@ -2,29 +2,27 @@ menuTitle: actionDeliveryPriceByWeight Title: actionDeliveryPriceByWeight hidden: true -hookTitle: +hookTitle: null files: - - classes/Carrier.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Carrier.php' + file: classes/Carrier.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionDeliveryPriceByWeight - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Carrier.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Carrier.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionDeliveryPriceByWeight', ['id_carrier' => $id_carrier, 'total_weight' => $total_weight, 'id_zone' => $id_zone]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcher.md b/modules/concepts/hooks/list-of-hooks/actionDispatcher.md index ed2398583b..fb70be7d66 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcher.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcher.md @@ -2,29 +2,27 @@ menuTitle: actionDispatcher Title: actionDispatcher hidden: true -hookTitle: +hookTitle: null files: - - classes/Dispatcher.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Dispatcher.php' + file: classes/Dispatcher.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionDispatcher - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Dispatcher.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Dispatcher.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionDispatcher', $params_hook_action_dispatcher) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md b/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md index 263926dfb7..7b57046105 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md @@ -2,32 +2,24 @@ menuTitle: actionDispatcherAfter Title: actionDispatcherAfter hidden: true -hookTitle: After dispatch +hookTitle: 'After dispatch' files: - - src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php' + file: src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionDispatcherAfter - -## Information - -{{% notice tip %}} -**After dispatch:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called at the end of the dispatch method of the Dispatcher' -This hook is called at the end of the dispatch method of the Dispatcher -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -37,4 +29,4 @@ dispatchWithParameters(self::DISPATCHER_AFTER_ACTION, [ 'controller_class' => $requestAttributes->get('controller_name'), 'is_module' => 0, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md b/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md index f7724cf271..f83cb85735 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md @@ -2,32 +2,24 @@ menuTitle: actionDispatcherBefore Title: actionDispatcherBefore hidden: true -hookTitle: Before dispatch +hookTitle: 'Before dispatch' files: - - src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php' + file: src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionDispatcherBefore - -## Information - -{{% notice tip %}} -**Before dispatch:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called at the beginning of the dispatch method of the Dispatcher' -This hook is called at the beginning of the dispatch method of the Dispatcher -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/EventListener/ActionDispatcherLegacyHooksSubscriber.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: dispatchWithParameters(self::DISPATCHER_BEFORE_ACTION, [ 'controller_type' => $controllerType, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md b/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md index 0a0443b318..8eb05a132b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md +++ b/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md @@ -2,29 +2,27 @@ menuTitle: actionDownloadAttachment Title: actionDownloadAttachment hidden: true -hookTitle: +hookTitle: null files: - - controllers/front/AttachmentController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/AttachmentController.php' + file: controllers/front/AttachmentController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionDownloadAttachment - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [controllers/front/AttachmentController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/AttachmentController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionDownloadAttachment', ['attachment' => &$attachment]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md b/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md index 3b10a53f09..2b2180202b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md @@ -2,34 +2,24 @@ menuTitle: actionEmailAddAfterContent Title: actionEmailAddAfterContent hidden: true -hookTitle: Add extra content after mail content +hookTitle: 'Add extra content after mail content' files: - - classes/Mail.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' + file: classes/Mail.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionEmailAddAfterContent - -## Information - -{{% notice tip %}} -**Add extra content after mail content:** +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook is called just after fetching mail template' -This hook is called just after fetching mail template -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/Mail.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -45,4 +35,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md b/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md index 78d6947357..9c204b8f71 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md @@ -2,34 +2,24 @@ menuTitle: actionEmailAddBeforeContent Title: actionEmailAddBeforeContent hidden: true -hookTitle: Add extra content before mail content +hookTitle: 'Add extra content before mail content' files: - - classes/Mail.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' + file: classes/Mail.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionEmailAddBeforeContent - -## Information - -{{% notice tip %}} -**Add extra content before mail content:** +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook is called just before fetching mail template' -This hook is called just before fetching mail template -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/Mail.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -45,4 +35,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md b/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md index e6c5db7fea..b5a595d627 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md @@ -2,34 +2,24 @@ menuTitle: actionEmailSendBefore Title: actionEmailSendBefore hidden: true -hookTitle: Before sending an email +hookTitle: 'Before sending an email' files: - - classes/Mail.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' + file: classes/Mail.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionEmailSendBefore - -## Information - -{{% notice tip %}} -**Before sending an email:** +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook is used to filter the content or the metadata of an email before sending it or even prevent its sending' -This hook is used to filter the content or the metadata of an email before sending it or even prevent its sending -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/Mail.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -56,4 +46,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md index b5159db6fa..703ea1d97d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md +++ b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md @@ -2,32 +2,28 @@ menuTitle: actionExportGDPRData Title: actionExportGDPRData hidden: true -hookTitle: +hookTitle: null files: - - modules/psgdpr/psgdpr.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php' + file: modules/psgdpr/psgdpr.php locations: - - front office + - 'front office' type: action -hookAliases: -Hook origin: module ---- - -# Hook actionExportGDPRData - -## Information +hookAliases: null +'Hook origin': module +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/psgdpr/psgdpr.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionExportGDPRData', $customer, $module['id_module']) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md index 1b53beaa5a..dda6bdd171 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md @@ -2,42 +2,28 @@ menuTitle: actionFeatureDelete Title: actionFeatureDelete hidden: true -hookTitle: Deleting attributes' features +hookTitle: "Deleting attributes' features" files: - - classes/Feature.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Feature.php' + file: classes/Feature.php locations: - - front office + - 'front office' type: action hookAliases: - - afterDeleteFeature ---- - -# Hook actionFeatureDelete - -## Aliases - - - afterDeleteFeature - - + - afterDeleteFeature +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while deleting an attributes features' -## Information - -{{% notice tip %}} -**Deleting attributes' features:** - -This hook is called while deleting an attributes features -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Feature.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Feature.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionFeatureDelete', ['id_feature' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md index 4cae8ed344..fce1c86f60 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md @@ -2,42 +2,28 @@ menuTitle: actionFeatureSave Title: actionFeatureSave hidden: true -hookTitle: Saving attributes' features +hookTitle: "Saving attributes' features" files: - - classes/Feature.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Feature.php' + file: classes/Feature.php locations: - - front office + - 'front office' type: action hookAliases: - - afterSaveFeature ---- - -# Hook actionFeatureSave - -## Aliases - - - afterSaveFeature - - + - afterSaveFeature +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while saving an attributes features' -## Information - -{{% notice tip %}} -**Saving attributes' features:** - -This hook is called while saving an attributes features -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Feature.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Feature.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionFeatureSave', ['id_feature' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md index 0306f4ddd3..49f3ce803c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md @@ -2,42 +2,28 @@ menuTitle: actionFeatureValueDelete Title: actionFeatureValueDelete hidden: true -hookTitle: Deleting attributes' features' values +hookTitle: "Deleting attributes' features' values" files: - - classes/FeatureValue.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/FeatureValue.php' + file: classes/FeatureValue.php locations: - - front office + - 'front office' type: action hookAliases: - - afterDeleteFeatureValue ---- - -# Hook actionFeatureValueDelete - -## Aliases - - - afterDeleteFeatureValue - - + - afterDeleteFeatureValue +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while deleting an attributes features value' -## Information - -{{% notice tip %}} -**Deleting attributes' features' values:** - -This hook is called while deleting an attributes features value -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/FeatureValue.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/FeatureValue.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionFeatureValueDelete', ['id_feature_value' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md index 662c44be47..cd15c61ac7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md @@ -2,42 +2,28 @@ menuTitle: actionFeatureValueSave Title: actionFeatureValueSave hidden: true -hookTitle: Saving an attributes features value +hookTitle: 'Saving an attributes features value' files: - - classes/FeatureValue.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/FeatureValue.php' + file: classes/FeatureValue.php locations: - - front office + - 'front office' type: action hookAliases: - - afterSaveFeatureValue ---- - -# Hook actionFeatureValueSave - -## Aliases - - - afterSaveFeatureValue - - + - afterSaveFeatureValue +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while saving an attributes features value' -## Information - -{{% notice tip %}} -**Saving an attributes features value:** - -This hook is called while saving an attributes features value -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/FeatureValue.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/FeatureValue.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionFeatureValueSave', ['id_feature_value' => $this->id]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md b/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md index 0466a1e913..f6ad72fdee 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md +++ b/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md @@ -2,33 +2,25 @@ menuTitle: actionFilterDeliveryOptionList Title: actionFilterDeliveryOptionList hidden: true -hookTitle: Modify delivery option list result +hookTitle: 'Modify delivery option list result' files: - - classes/Cart.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php' + file: classes/Cart.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionFilterDeliveryOptionList - -## Information - -{{% notice tip %}} -**Modify delivery option list result:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows you to modify delivery option list' -This hook allows you to modify delivery option list -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Cart.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php) +{{% hookDescriptor %}} ## Parameters details @@ -79,4 +71,4 @@ class MyCarrierConditionDisablerModule extends Module } } } -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md index 509a65d62e..3d0f4ff388 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md @@ -2,39 +2,25 @@ menuTitle: actionFrontControllerInitAfter Title: actionFrontControllerInitAfter hidden: true -hookTitle: Perform actions after front office controller initialization +hookTitle: 'Perform actions after front office controller initialization' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: action hookAliases: - - actionFrontControllerAfterInit ---- - -# Hook actionFrontControllerInitAfter - -## Aliases - - - actionFrontControllerAfterInit - - + - actionFrontControllerAfterInit +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched after the initialization of all front office controllers' -## Information - -{{% notice tip %}} -**Perform actions after front office controller initialization:** - -This hook is launched after the initialization of all front office controllers -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -45,4 +31,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md index 0625f5d57f..67e0abf6ac 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md @@ -2,32 +2,24 @@ menuTitle: actionFrontControllerInitBefore Title: actionFrontControllerInitBefore hidden: true -hookTitle: Perform actions before front office controller initialization +hookTitle: 'Perform actions before front office controller initialization' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionFrontControllerInitBefore - -## Information - -{{% notice tip %}} -**Perform actions before front office controller initialization:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched before the initialization of all front office controllers' -This hook is launched before the initialization of all front office controllers -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Hook::exec( 'controller' => $this, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md index fbb220b2b9..21f5ecc9cc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md @@ -2,29 +2,27 @@ menuTitle: actionFrontControllerSetMedia Title: actionFrontControllerSetMedia hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionFrontControllerSetMedia - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionFrontControllerSetMedia', []) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md index 272dfa123d..eb91f018f0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md @@ -2,34 +2,24 @@ menuTitle: actionFrontControllerSetVariables Title: actionFrontControllerSetVariables hidden: true -hookTitle: Add variables in JavaScript object and Smarty templates +hookTitle: 'Add variables in JavaScript object and Smarty templates' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionFrontControllerSetVariables - -## Information - -{{% notice tip %}} -**Add variables in JavaScript object and Smarty templates:** - -Add variables to javascript object that is available in Front Office. These are also available in smarty templates in modules.your_module_name. -{{% /notice %}} +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'Add variables to javascript object that is available in Front Office. These are also available in smarty templates in modules.your_module_name.' -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Parameters details @@ -59,4 +49,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md b/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md index 6900a46b4e..bd62ad64f5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md +++ b/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md @@ -2,31 +2,24 @@ menuTitle: actionGenerateDocumentReference Title: actionGenerateDocumentReference hidden: true -hookTitle: Modify document reference for Order +hookTitle: 'Modify document reference for Order' files: - - classes/order/Order.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.1.x/classes/order/Order.php' + file: classes/order/Order.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionGenerateDocumentReference {{< minver v="8.1" >}} - -## Information - -{{% notice tip %}} -**Modify document reference for Order:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows modules to return custom document references for order' -This hook allows modules to return custom document references for orders{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/Order.php](https://github.com/PrestaShop/PrestaShop/blob/8.1.x/classes/order/Order.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -34,4 +27,4 @@ Located in: $reference = Hook::exec('actionGenerateDocumentReference', [ 'type' => 'order', ]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md b/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md index d943e674f0..d465084593 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md @@ -2,33 +2,25 @@ menuTitle: actionGetAdminOrderButtons Title: actionGetAdminOrderButtons hidden: true -hookTitle: Admin Order Buttons +hookTitle: 'Admin Order Buttons' files: - - src/PrestaShopBundle/Controller/Admin/Sell/Order/OrderController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Sell/Order/OrderController.php' + file: src/PrestaShopBundle/Controller/Admin/Sell/Order/OrderController.php locations: - - back office + - 'back office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionGetAdminOrderButtons - -## Information - -{{% notice tip %}} -**Admin Order Buttons:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is used to generate the buttons collection on the order view page (see ActionsBarButtonsCollection)' -This hook is used to generate the buttons collection on the order view page (see ActionsBarButtonsCollection) -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/PrestaShopBundle/Controller/Admin/Sell/Order/OrderController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Sell/Order/OrderController.php) +{{% hookDescriptor %}} ## Parameters details @@ -56,4 +48,4 @@ dispatchHook( ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md b/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md index 70739bf46c..aa359a6883 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md @@ -2,32 +2,24 @@ menuTitle: actionGetAdminToolbarButtons Title: actionGetAdminToolbarButtons hidden: true -hookTitle: Allows to add buttons in any toolbar in the back office +hookTitle: 'Allows to add buttons in any toolbar in the back office' files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionGetAdminToolbarButtons - -## Information - -{{% notice tip %}} -**Allows to add buttons in any toolbar in the back office:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows you to define descriptions of buttons to add in any toolbar of the back office' -This hook allows you to define descriptions of buttons to add in any toolbar of the back office -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Parameters details @@ -46,4 +38,4 @@ Hook::exec('actionGetAdminToolbarButtons', [ 'controller' => $this, 'toolbar_extra_buttons_collection' => &$toolbarButtonsCollection, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md b/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md index e108262be8..dde6355ddc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md @@ -2,34 +2,24 @@ menuTitle: actionGetAlternativeSearchPanels Title: actionGetAlternativeSearchPanels hidden: true -hookTitle: Additional search panel +hookTitle: 'Additional search panel' files: - - controllers/admin/AdminSearchController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminSearchController.php' + file: controllers/admin/AdminSearchController.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionGetAlternativeSearchPanels - -## Information - -{{% notice tip %}} -**Additional search panel:** - -This hook allows to add an additional search panel for external providers in PrestaShop back office -{{% /notice %}} +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook allows to add an additional search panel for external providers in PrestaShop back office' -Hook locations: - - back office - -Hook type: action - -Located in: - - [controllers/admin/AdminSearchController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminSearchController.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Parameters details @@ -53,4 +43,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md b/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md index e1e8de2364..75d7a12846 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md @@ -2,28 +2,24 @@ menuTitle: actionGetExtraMailTemplateVars Title: actionGetExtraMailTemplateVars hidden: true -hookTitle: +hookTitle: null files: - - classes/Mail.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' + file: classes/Mail.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionGetExtraMailTemplateVars - -## Information +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/Mail.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -39,4 +35,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md b/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md index cf03630b84..867e0373bc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md @@ -2,29 +2,27 @@ menuTitle: actionGetIDZoneByAddressID Title: actionGetIDZoneByAddressID hidden: true -hookTitle: +hookTitle: null files: - - classes/Address.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Address.php' + file: classes/Address.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionGetIDZoneByAddressID - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Address.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Address.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionGetIDZoneByAddressID', ['id_address' => $id_address]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md b/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md index 8e16bb7222..71c6db44b8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md @@ -2,33 +2,25 @@ menuTitle: actionGetMailLayoutTransformations Title: actionGetMailLayoutTransformations hidden: true -hookTitle: Define the transformation to apply on layout +hookTitle: 'Define the transformation to apply on layout' files: - - src/Adapter/MailTemplate/MailTemplateTwigRenderer.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/MailTemplate/MailTemplateTwigRenderer.php' + file: src/Adapter/MailTemplate/MailTemplateTwigRenderer.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionGetMailLayoutTransformations - -## Information - -{{% notice tip %}} -**Define the transformation to apply on layout:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows to add/remove TransformationInterface used to generate an email layout' -This hook allows to add/remove TransformationInterface used to generate an email layout -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/MailTemplate/MailTemplateTwigRenderer.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/MailTemplate/MailTemplateTwigRenderer.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -45,4 +37,4 @@ dispatchWithParameters( ## Example implementation -This hook has been implemented as an example in our [modules examples repository - example_module_mailtheme](https://github.com/PrestaShop/example-modules/blob/master/example_module_mailtheme). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - example_module_mailtheme](https://github.com/PrestaShop/example-modules/blob/master/example_module_mailtheme). diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md index fec6bd33a8..75467b5dec 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md @@ -2,30 +2,24 @@ menuTitle: actionGetProductPropertiesAfter Title: actionGetProductPropertiesAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionGetProductPropertiesAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice warning %}} -**Deprecated:** Since 1.7.8.0 -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +29,4 @@ Hook::exec('actionGetProductPropertiesAfter', [ 'product' => &$row, 'context' => $context, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md index a9312f87ae..ad75c9971f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md @@ -2,32 +2,24 @@ menuTitle: actionGetProductPropertiesAfterUnitPrice Title: actionGetProductPropertiesAfterUnitPrice hidden: true -hookTitle: Product Properties +hookTitle: 'Product Properties' files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionGetProductPropertiesAfterUnitPrice - -## Information - -{{% notice tip %}} -**Product Properties:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called after defining the properties of a product' -This hook is called after defining the properties of a product -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -37,4 +29,4 @@ Hook::exec('actionGetProductPropertiesAfterUnitPrice', [ 'product' => &$row, 'context' => $context, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md index cabf252c98..63141ccda1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md @@ -2,26 +2,24 @@ menuTitle: actionGetProductPropertiesBefore Title: actionGetProductPropertiesBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionGetProductPropertiesBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -31,4 +29,4 @@ Hook::exec('actionGetProductPropertiesBefore', [ 'product' => &$row, 'context' => $context, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md index 8aca2e7599..320ab48c59 100644 --- a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md +++ b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md @@ -2,42 +2,28 @@ menuTitle: actionHtaccessCreate Title: actionHtaccessCreate hidden: true -hookTitle: After htaccess creation +hookTitle: 'After htaccess creation' files: - - classes/Tools.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php' + file: classes/Tools.php locations: - - front office + - 'front office' type: action hookAliases: - - afterCreateHtaccess ---- - -# Hook actionHtaccessCreate - -## Aliases - - - afterCreateHtaccess - - + - afterCreateHtaccess +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed after the htaccess creation' -## Information - -{{% notice tip %}} -**After htaccess creation:** - -This hook is displayed after the htaccess creation -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Tools.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionHtaccessCreate') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md b/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md index 984d8325ba..482b60c0db 100644 --- a/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md +++ b/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md @@ -2,26 +2,24 @@ menuTitle: actionInvoiceNumberFormatted Title: actionInvoiceNumberFormatted hidden: true -hookTitle: +hookTitle: null files: - - classes/order/OrderInvoice.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderInvoice.php' + file: classes/order/OrderInvoice.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionInvoiceNumberFormatted - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/OrderInvoice.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderInvoice.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -32,4 +30,4 @@ Hook::exec('actionInvoiceNumberFormatted', [ 'id_shop' => (int) $id_shop, 'number' => (int) $this->number, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md b/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md index 0156635a08..347f308c60 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md +++ b/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md @@ -2,33 +2,25 @@ menuTitle: actionListMailThemes Title: actionListMailThemes hidden: true -hookTitle: List the available email themes and layouts +hookTitle: 'List the available email themes and layouts' files: - - src/Core/MailTemplate/FolderThemeCatalog.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/MailTemplate/FolderThemeCatalog.php' + file: src/Core/MailTemplate/FolderThemeCatalog.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionListMailThemes - -## Information - -{{% notice tip %}} -**List the available email themes and layouts:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows to add/remove available email themes (ThemeInterface) and/or to add/remove their layouts (LayoutInterface)' -This hook allows to add/remove available email themes (ThemeInterface) and/or to add/remove their layouts (LayoutInterface) -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Core/MailTemplate/FolderThemeCatalog.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/MailTemplate/FolderThemeCatalog.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -41,4 +33,4 @@ dispatchWithParameters( ## Example implementation -This hook has been implemented as an example in our [modules examples repository - example_module_mailtheme](https://github.com/PrestaShop/example-modules/blob/master/example_module_mailtheme). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - example_module_mailtheme](https://github.com/PrestaShop/example-modules/blob/master/example_module_mailtheme). diff --git a/modules/concepts/hooks/list-of-hooks/actionListModules.md b/modules/concepts/hooks/list-of-hooks/actionListModules.md index b93cb4e8eb..b337f5fbf5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListModules.md +++ b/modules/concepts/hooks/list-of-hooks/actionListModules.md @@ -2,27 +2,22 @@ menuTitle: actionListModules Title: actionListModules hidden: true -hookTitle: Allows you to add your own modules from a remote source in the modules list in the back office. -files: - - src/Core/Module/ModuleRepository.php +hookTitle: 'Allows you to add your own modules from a remote source in the modules list in the back office.' +files: { } locations: - - back office + - 'back office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionListModules {{< minver v="8.0" >}} - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: -- back office - -Hook type: action +--- -Located in: -- [src/Core/Module/ModuleRepository.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Module/ModuleRepository.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -33,4 +28,4 @@ $modulesFromHook = array_values($modulesFromHook ?? []); ## Example implementation -This hook has been implemented in the native [ps_distributionapiclient](https://github.com/PrestaShop/ps_distributionapiclient/tree/master) module \ No newline at end of file +This hook has been implemented in the native [ps_distributionapiclient](https://github.com/PrestaShop/ps_distributionapiclient/tree/master) module diff --git a/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md b/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md index 025b95ed59..debd9e55c6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md +++ b/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md @@ -2,32 +2,22 @@ menuTitle: actionLoggerLogMessage Title: actionLoggerLogMessage hidden: true -hookTitle: Allows to make extra action while a log is triggered -files: - - classes/log/AbstractLogger.php +hookTitle: 'Allows to make extra action while a log is triggered' +files: { } locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionLoggerLogMessage {{< minver v="8.1" >}} - -## Information - -{{% notice tip %}} -**Allows to make extra action while a log is triggered** -{{% /notice %}} +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: -- back office -- front office - -Hook type: action +--- -Located in: -- [classes/log/AbstractLogger.php](https://github.com/PrestaShop/PrestaShop/blob/8.1.x/classes/log/AbstractLogger.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -41,3 +31,4 @@ Hook::exec( ] ); ``` + diff --git a/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md b/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md index c2fd5e6c00..4407fac5e9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md +++ b/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md @@ -2,26 +2,24 @@ menuTitle: actionMailAlterMessageBeforeSend Title: actionMailAlterMessageBeforeSend hidden: true -hookTitle: +hookTitle: null files: - - classes/Mail.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' + file: classes/Mail.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionMailAlterMessageBeforeSend - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Mail.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -29,4 +27,4 @@ Located in: Hook::exec('actionMailAlterMessageBeforeSend', [ 'message' => &$message, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md b/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md index ffb228ec15..31934436a8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md +++ b/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md @@ -2,33 +2,25 @@ menuTitle: actionModifyFrontendSitemap Title: actionModifyFrontendSitemap hidden: true -hookTitle: Allows modules to add own urls (even whole new groups) to frontend sitemap. +hookTitle: 'Allows modules to add own urls (even whole new groups) to frontend sitemap.' files: - - controllers/front/SitemapController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.1.x/controllers/front/SitemapController.php' + file: controllers/front/SitemapController.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook actionModifyFrontendSitemap {{< minver v="8.1" >}} - -## Information - -{{% notice tip %}} -**Allows modules to add own urls (even whole new groups) to frontend sitemap:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'For example landing pages, blog posts and others.' -For example landing pages, blog posts and others. -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [controllers/front/SitemapController.php](https://github.com/PrestaShop/PrestaShop/blob/8.1.x/controllers/front/SitemapController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -62,3 +54,4 @@ public function hookActionModifyFrontendSitemap($params) unset($params['urls']['categories']); // hide categories } ``` + diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md index fb12240bf9..04c9ac1d08 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md @@ -4,33 +4,25 @@ Title: actionModuleInstallAfter hidden: true hookTitle: actionModuleInstallAfter files: - - classes/module/Module.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php' + file: classes/module/Module.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleInstallAfter - -## Information - -{{% notice tip %}} -**actionModuleInstallAfter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' +--- -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/module/Module.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionModuleInstallAfter', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md index d34c63e5b5..0bed7bab2e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md @@ -4,33 +4,25 @@ Title: actionModuleInstallBefore hidden: true hookTitle: actionModuleInstallBefore files: - - classes/module/Module.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php' + file: classes/module/Module.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleInstallBefore - -## Information - -{{% notice tip %}} -**actionModuleInstallBefore:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' +--- -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/module/Module.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionModuleInstallBefore', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md index 6018513f72..6e262573cd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md @@ -2,29 +2,24 @@ menuTitle: actionModuleMailAlertSendCustomer Title: actionModuleMailAlertSendCustomer hidden: true -hookTitle: +hookTitle: null files: - - modules/ps_emailalerts/MailAlert.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailalerts/MailAlert.php' + file: modules/ps_emailalerts/MailAlert.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: module ---- - -# Hook actionModuleMailAlertSendCustomer - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/ps_emailalerts/MailAlert.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailalerts/MailAlert.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +33,4 @@ Hook::exec( 'product_obj' => $product, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md index 1b257f437d..cef5228ff5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md @@ -2,26 +2,24 @@ menuTitle: actionModuleRegisterHookAfter Title: actionModuleRegisterHookAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/Hook.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' + file: classes/Hook.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleRegisterHookAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Hook.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -33,4 +31,4 @@ Hook::exec( 'hook_name' => $hook_name, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md index 5548c72f5e..35aee78b4e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md @@ -2,26 +2,24 @@ menuTitle: actionModuleRegisterHookBefore Title: actionModuleRegisterHookBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/Hook.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' + file: classes/Hook.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleRegisterHookBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Hook.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -33,4 +31,4 @@ Hook::exec( 'hook_name' => $hook_name, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md index 151d566611..bfc239bfac 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md @@ -2,26 +2,24 @@ menuTitle: actionModuleUnRegisterHookAfter Title: actionModuleUnRegisterHookAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/Hook.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' + file: classes/Hook.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleUnRegisterHookAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Hook.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -33,4 +31,4 @@ Hook::exec( 'hook_name' => $hook_name, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md index 437a202d25..d60cfbb5a8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md @@ -2,29 +2,27 @@ menuTitle: actionModuleUnRegisterHookBefore Title: actionModuleUnRegisterHookBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/Hook.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' + file: classes/Hook.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleUnRegisterHookBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Hook.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionModuleUnRegisterHookBefore', ['object' => $module_instance, 'hook_name' => $hook_name]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md index 0704a35d56..48c5157051 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md @@ -4,33 +4,25 @@ Title: actionModuleUninstallAfter hidden: true hookTitle: actionModuleUninstallAfter files: - - classes/module/Module.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php' + file: classes/module/Module.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleUninstallAfter - -## Information - -{{% notice tip %}} -**actionModuleUninstallAfter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' +--- -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/module/Module.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionModuleUninstallAfter', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md index 97b2ffd54b..b5f8fb4d80 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md @@ -4,33 +4,25 @@ Title: actionModuleUninstallBefore hidden: true hookTitle: actionModuleUninstallBefore files: - - classes/module/Module.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php' + file: classes/module/Module.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionModuleUninstallBefore - -## Information - -{{% notice tip %}} -**actionModuleUninstallBefore:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' +--- -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Located in: - - [classes/module/Module.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/Module.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionModuleUninstallBefore', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md index e72c4d7720..a4b78200fb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md @@ -2,29 +2,24 @@ menuTitle: actionNewsletterRegistrationAfter Title: actionNewsletterRegistrationAfter hidden: true -hookTitle: +hookTitle: null files: - - modules/ps_emailsubscription/ps_emailsubscription.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php' + file: modules/ps_emailsubscription/ps_emailsubscription.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: module ---- - -# Hook actionNewsletterRegistrationAfter - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/ps_emailsubscription/ps_emailsubscription.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +33,4 @@ Hook::exec( 'error' => &$this->error, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md index 59e3226905..f18b701879 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md @@ -2,29 +2,24 @@ menuTitle: actionNewsletterRegistrationBefore Title: actionNewsletterRegistrationBefore hidden: true -hookTitle: +hookTitle: null files: - - modules/ps_emailsubscription/ps_emailsubscription.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php' + file: modules/ps_emailsubscription/ps_emailsubscription.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: module ---- - -# Hook actionNewsletterRegistrationBefore - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/ps_emailsubscription/ps_emailsubscription.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +33,4 @@ Hook::exec( 'hookError' => &$hookError, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md index ba37e709a9..b03cbf12c1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md @@ -2,31 +2,28 @@ menuTitle: actionObjectAddAfter Title: actionObjectAddAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObject<ClassName>AddAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObject' . $this->getFullyQualifiedName() . 'AddAfter', ['object' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md index d990fb2bf2..9673d10b01 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectAddBefore Title: actionObjectAddBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObject<ClassName>AddBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObject' . $this->getFullyQualifiedName() . 'AddBefore', ['object' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md index 6a7c3c2b66..1590fc97eb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md @@ -2,31 +2,28 @@ menuTitle: actionObjectDeleteAfter Title: actionObjectDeleteAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObject<ClassName>DeleteAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObject' . $this->getFullyQualifiedName() . 'DeleteAfter', ['object' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md index 4082545116..26e1b8ca98 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectDeleteBefore Title: actionObjectDeleteBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObject<ClassName>DeleteBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObject' . $this->getFullyQualifiedName() . 'DeleteBefore', ['object' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md index 295ef5ebea..cddb690906 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md @@ -2,31 +2,28 @@ menuTitle: actionObjectUpdateAfter Title: actionObjectUpdateAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObject<ClassName>UpdateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObject' . $this->getFullyQualifiedName() . 'UpdateAfter', ['object' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md index 2ec8cd3167..786de89955 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectUpdateBefore Title: actionObjectUpdateBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObject<ClassName>UpdateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObject' . $this->getFullyQualifiedName() . 'UpdateBefore', ['object' => $this]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md index ed5565b37a..be8d78158d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md @@ -2,31 +2,28 @@ menuTitle: actionObjectAddAfter Title: actionObjectAddAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectAddAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectAddAfter', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md index bc0634d34b..02b3363b3f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectAddBefore Title: actionObjectAddBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectAddBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectAddBefore', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md index 5a31af6994..2149303c9e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectAttributeAddBefore Title: actionObjectAttributeAddBefore hidden: true -hookTitle: +hookTitle: null files: - - controllers/admin/AdminAttributesGroupsController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminAttributesGroupsController.php' + file: controllers/admin/AdminAttributesGroupsController.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectAttributeAddBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminAttributesGroupsController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminAttributesGroupsController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectAttributeAddBefore') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md index b771d5f3b0..80c41a7c39 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectAttributeGroupAddBefore Title: actionObjectAttributeGroupAddBefore hidden: true -hookTitle: +hookTitle: null files: - - controllers/admin/AdminAttributesGroupsController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminAttributesGroupsController.php' + file: controllers/admin/AdminAttributesGroupsController.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectAttributeGroupAddBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [controllers/admin/AdminAttributesGroupsController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminAttributesGroupsController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectAttributeGroupAddBefore') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md index d17177cf42..e722339779 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md @@ -2,31 +2,28 @@ menuTitle: actionObjectDeleteAfter Title: actionObjectDeleteAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectDeleteAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectDeleteAfter', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md index 78d0b119a0..623fd5dad9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectDeleteBefore Title: actionObjectDeleteBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectDeleteBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectDeleteBefore', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md index 8b5c92aae0..95ce4370d9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md @@ -2,34 +2,28 @@ menuTitle: actionObjectProductCommentValidateAfter Title: actionObjectProductCommentValidateAfter hidden: true -hookTitle: +hookTitle: null files: - - modules/productcomments/ProductComment.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/productcomments/ProductComment.php' + file: modules/productcomments/ProductComment.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: +hookAliases: null origin: module ---- - -# Hook actionObjectProductCommentValidateAfter - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - back office - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/productcomments/ProductComment.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/productcomments/ProductComment.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectProductCommentValidateAfter', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md index d5583be39d..96ef7dac27 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md @@ -2,37 +2,28 @@ menuTitle: actionObjectProductInCartDeleteAfter Title: actionObjectProductInCartDeleteAfter hidden: true -hookTitle: Cart product removal +hookTitle: 'Cart product removal' files: - - controllers/front/CartController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CartController.php' + file: controllers/front/CartController.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectProductInCartDeleteAfter - -## Information - -{{% notice tip %}} -**Cart product removal:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called after a product is removed from a cart' -This hook is called after a product is removed from a cart -{{% /notice %}} - -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [controllers/front/CartController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CartController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectProductInCartDeleteAfter', $data) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md index ac4efab0d0..85acfc9a49 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md @@ -2,39 +2,28 @@ menuTitle: actionObjectProductInCartDeleteBefore Title: actionObjectProductInCartDeleteBefore hidden: true -hookTitle: Cart product removal +hookTitle: 'Cart product removal' files: - - controllers/front/CartController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CartController.php' + file: controllers/front/CartController.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectProductInCartDeleteBefore - -## Information - -{{% notice tip %}} -**Cart product removal:** +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook is called before a product is removed from a cart' -This hook is called before a product is removed from a cart -{{% /notice %}} - -Hook locations: - - back office - - front office - -Hook type: action - -Located in: - - [controllers/front/CartController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CartController.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectProductInCartDeleteBefore', $data, null, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md index 8cb2f18c00..5b008ee80f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md @@ -2,31 +2,28 @@ menuTitle: actionObjectUpdateAfter Title: actionObjectUpdateAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectUpdateAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectUpdateAfter', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md index 99ae4f2275..4ec7f755ca 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md @@ -2,31 +2,28 @@ menuTitle: actionObjectUpdateBefore Title: actionObjectUpdateBefore hidden: true -hookTitle: +hookTitle: null files: - - classes/ObjectModel.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' + file: classes/ObjectModel.php locations: - - back office - - front office + - 'back office' + - 'front office' type: action -hookAliases: ---- - -# Hook actionObjectUpdateBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/ObjectModel.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionObjectUpdateBefore', ['object' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md b/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md index 9562972061..0fa2f1e3a4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md @@ -2,29 +2,27 @@ menuTitle: actionOnImageCutAfter Title: actionOnImageCutAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ImageManager.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ImageManager.php' + file: classes/ImageManager.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionOnImageCutAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/ImageManager.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ImageManager.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionOnImageCutAfter', ['dst_file' => $dstFile, 'file_type' => $fileType]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md b/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md index 058c285141..83d9fdcf71 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md @@ -2,29 +2,27 @@ menuTitle: actionOnImageResizeAfter Title: actionOnImageResizeAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/ImageManager.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ImageManager.php' + file: classes/ImageManager.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionOnImageResizeAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/ImageManager.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ImageManager.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionOnImageResizeAfter', ['dst_file' => $destinationFile, 'file_type' => $fileType]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md b/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md index 5a33f4b62c..0a111b3b67 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md @@ -2,32 +2,24 @@ menuTitle: actionOrderEdited Title: actionOrderEdited hidden: true -hookTitle: Order edited +hookTitle: 'Order edited' files: - - src/Adapter/Order/CommandHandler/UpdateProductInOrderHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/CommandHandler/UpdateProductInOrderHandler.php' + file: src/Adapter/Order/CommandHandler/UpdateProductInOrderHandler.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionOrderEdited - -## Information - -{{% notice tip %}} -**Order edited:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when an order is edited' -This hook is called when an order is edited -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Order/CommandHandler/UpdateProductInOrderHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/CommandHandler/UpdateProductInOrderHandler.php) +{{% hookDescriptor %}} ## Parameters details @@ -41,4 +33,4 @@ Located in: ```php Hook::exec('actionOrderEdited', ['order' => $order]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md index 48ab678313..8f72b0e560 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md @@ -2,29 +2,27 @@ menuTitle: actionOrderHistoryAddAfter Title: actionOrderHistoryAddAfter hidden: true -hookTitle: +hookTitle: null files: - - classes/order/OrderHistory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php' + file: classes/order/OrderHistory.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionOrderHistoryAddAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/OrderHistory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionOrderHistoryAddAfter', ['order_history' => $this], null, false, true, false, $order->id_shop) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md index 4668482827..e20f6502df 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md @@ -2,39 +2,25 @@ menuTitle: actionOrderReturn Title: actionOrderReturn hidden: true -hookTitle: Returned product +hookTitle: 'Returned product' files: - - controllers/front/OrderFollowController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderFollowController.php' + file: controllers/front/OrderFollowController.php locations: - - front office + - 'front office' type: action hookAliases: - - orderReturn ---- - -# Hook actionOrderReturn - -## Aliases - - - orderReturn - - - -## Information + - orderReturn +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed when a customer returns a product ' -{{% notice tip %}} -**Returned product:** - -This hook is displayed when a customer returns a product -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [controllers/front/OrderFollowController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderFollowController.php) +{{% hookDescriptor %}} ## Parameters details @@ -49,4 +35,4 @@ Located in: ```php Hook::exec('actionOrderReturn', ['orderReturn' => $orderReturn]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md index 71121b037c..a99cc12142 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md @@ -2,39 +2,25 @@ menuTitle: actionOrderSlipAdd Title: actionOrderSlipAdd hidden: true -hookTitle: Order slip creation +hookTitle: 'Order slip creation' files: - - src/Adapter/Order/Refund/OrderSlipCreator.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/Refund/OrderSlipCreator.php' + file: src/Adapter/Order/Refund/OrderSlipCreator.php locations: - - front office + - 'front office' type: action hookAliases: - - orderSlip ---- - -# Hook actionOrderSlipAdd - -## Aliases - - - orderSlip - - - -## Information + - orderSlip +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when a new credit slip is added regarding client order' -{{% notice tip %}} -**Order slip creation:** - -This hook is called when a new credit slip is added regarding client order -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Order/Refund/OrderSlipCreator.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/Refund/OrderSlipCreator.php) +{{% hookDescriptor %}} ## Parameters details @@ -66,4 +52,4 @@ Hook::exec('actionOrderSlipAdd', [ 'productList' => $orderRefundSummary->getProductRefunds(), 'qtyList' => $fullQuantityList, ], null, false, true, false, $order->id_shop) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md index 0c05d61ef3..a8717610da 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md @@ -2,38 +2,25 @@ menuTitle: actionOrderStatusPostUpdate Title: actionOrderStatusPostUpdate hidden: true -hookTitle: Post update of order status +hookTitle: 'Post update of order status' files: - - classes/order/OrderHistory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php' + file: classes/order/OrderHistory.php locations: - - front office + - 'front office' type: action hookAliases: - - postUpdateOrderStatus ---- - -# Hook actionOrderStatusPostUpdate - -## Aliases - - - postUpdateOrderStatus - - + - postUpdateOrderStatus +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'Allows to be notified after order status is changed.' -## Information - -{{% notice tip %}} -**Post update of order status:** -Allows to be notified after order status is changed. -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/OrderHistory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php) +{{% hookDescriptor %}} ## Parameters details @@ -54,4 +41,4 @@ Hook::exec('actionOrderStatusPostUpdate', [ 'oldOrderStatus' => $old_os, 'id_order' => (int) $order->id, ], null, false, true, false, $order->id_shop) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md index 3ad2d8ead1..35447f718b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md @@ -2,39 +2,25 @@ menuTitle: actionOrderStatusUpdate Title: actionOrderStatusUpdate hidden: true -hookTitle: Order status update - Event +hookTitle: 'Order status update - Event' files: - - classes/order/OrderHistory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php' + file: classes/order/OrderHistory.php locations: - - front office + - 'front office' type: action hookAliases: - - updateOrderStatus ---- - -# Hook actionOrderStatusUpdate - -## Aliases - - - updateOrderStatus - - - -## Information + - updateOrderStatus +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the status of an order changes' -{{% notice tip %}} -**Order status update - Event:** - -This hook launches modules when the status of an order changes -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/OrderHistory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php) +{{% hookDescriptor %}} ## Parameters details @@ -55,4 +41,4 @@ Hook::exec('actionOrderStatusUpdate', [ 'oldOrderStatus' => $old_os, 'id_order' => (int) $order->id, ], null, false, true, false, $order->id_shop) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md b/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md index f7a6cc0fc0..117bb63512 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md @@ -2,35 +2,27 @@ menuTitle: actionOutputHTMLBefore Title: actionOutputHTMLBefore hidden: true -hookTitle: Before HTML output +hookTitle: 'Before HTML output' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionOutputHTMLBefore - -## Information - -{{% notice tip %}} -**Before HTML output:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is used to filter the whole HTML page before it is rendered (only front)' -This hook is used to filter the whole HTML page before it is rendered (only front) -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionOutputHTMLBefore', ['html' => &$html]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md b/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md index 9aab083998..29a16b454d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md +++ b/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md @@ -2,32 +2,24 @@ menuTitle: actionOverrideEmployeeImage Title: actionOverrideEmployeeImage hidden: true -hookTitle: Get Employee Image +hookTitle: 'Get Employee Image' files: - - classes/Employee.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Employee.php' + file: classes/Employee.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionOverrideEmployeeImage - -## Information - -{{% notice tip %}} -**Get Employee Image:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is used to get the employee image' -This hook is used to get the employee image -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Employee.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Employee.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -39,4 +31,4 @@ Hook::exec( 'imageUrl' => &$imageUrl, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md b/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md index 04dcb66283..947e3583ff 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md +++ b/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md @@ -2,29 +2,27 @@ menuTitle: actionPDFInvoiceRender Title: actionPDFInvoiceRender hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/PDF/OrderInvoicePdfGenerator.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/PDF/OrderInvoicePdfGenerator.php' + file: src/Adapter/PDF/OrderInvoicePdfGenerator.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPDFInvoiceRender - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/PDF/OrderInvoicePdfGenerator.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/PDF/OrderInvoicePdfGenerator.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionPDFInvoiceRender', ['order_invoice_list' => $order_invoice_list]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md b/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md index e400ce5447..f75509f756 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md +++ b/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md @@ -2,29 +2,27 @@ menuTitle: actionPasswordRenew Title: actionPasswordRenew hidden: true -hookTitle: +hookTitle: null files: - - controllers/front/PasswordController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/PasswordController.php' + file: controllers/front/PasswordController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPasswordRenew - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [controllers/front/PasswordController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/PasswordController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionPasswordRenew', ['customer' => $customer, 'password' => $password]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md index 383a04d822..25ee1ed3d3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md @@ -2,39 +2,25 @@ menuTitle: actionPaymentCCAdd Title: actionPaymentCCAdd hidden: true -hookTitle: Payment CC added +hookTitle: 'Payment CC added' files: - - classes/order/OrderPayment.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderPayment.php' + file: classes/order/OrderPayment.php locations: - - front office + - 'front office' type: action hookAliases: - - paymentCCAdded ---- - -# Hook actionPaymentCCAdd - -## Aliases - - - paymentCCAdded - - - -## Information + - paymentCCAdded +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**Payment CC added:** - - -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/OrderPayment.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderPayment.php) +{{% hookDescriptor %}} ## Parameters details @@ -49,4 +35,4 @@ Located in: ```php Hook::exec('actionPaymentCCAdd', ['paymentCC' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md index 94b6130491..fbff0d2e4b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md @@ -2,39 +2,25 @@ menuTitle: actionPaymentConfirmation Title: actionPaymentConfirmation hidden: true -hookTitle: Payment confirmation +hookTitle: 'Payment confirmation' files: - - classes/order/OrderHistory.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php' + file: classes/order/OrderHistory.php locations: - - front office + - 'front office' type: action hookAliases: - - paymentConfirm ---- - -# Hook actionPaymentConfirmation - -## Aliases - - - paymentConfirm - - - -## Information + - paymentConfirm +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays new elements after the payment is validated' -{{% notice tip %}} -**Payment confirmation:** - -This hook displays new elements after the payment is validated -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/OrderHistory.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php) +{{% hookDescriptor %}} ## Parameters details @@ -49,4 +35,4 @@ Located in: ```php Hook::exec('actionPaymentConfirmation', ['id_order' => (int) $order->id], null, false, true, false, $order->id_shop) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentCart.md b/modules/concepts/hooks/list-of-hooks/actionPresentCart.md index e613e17cba..8b3876c8fd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentCart.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentCart.md @@ -2,32 +2,24 @@ menuTitle: actionPresentCart Title: actionPresentCart hidden: true -hookTitle: Cart Presenter +hookTitle: 'Cart Presenter' files: - - src/Adapter/Presenter/Cart/CartPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Cart/CartPresenter.php' + file: src/Adapter/Presenter/Cart/CartPresenter.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPresentCart - -## Information - -{{% notice tip %}} -**Cart Presenter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called before a cart is presented' -This hook is called before a cart is presented -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Presenter/Cart/CartPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Cart/CartPresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionPresentCart', ['presentedCart' => &$result] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentModule.md b/modules/concepts/hooks/list-of-hooks/actionPresentModule.md index 00a898b5bb..45f7adc670 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentModule.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentModule.md @@ -2,26 +2,24 @@ menuTitle: actionPresentModule Title: actionPresentModule hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/Presenter/Module/ModulePresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Module/ModulePresenter.php' + file: src/Adapter/Presenter/Module/ModulePresenter.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPresentModule - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Presenter/Module/ModulePresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Module/ModulePresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -29,4 +27,4 @@ Located in: Hook::exec('actionPresentModule', ['presentedModule' => &$result] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md b/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md index 180afe4084..fd9b4199ce 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md @@ -2,32 +2,24 @@ menuTitle: actionPresentOrder Title: actionPresentOrder hidden: true -hookTitle: Order Presenter +hookTitle: 'Order Presenter' files: - - src/Adapter/Presenter/Order/OrderPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Order/OrderPresenter.php' + file: src/Adapter/Presenter/Order/OrderPresenter.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPresentOrder - -## Information - -{{% notice tip %}} -**Order Presenter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called before an order is presented' -This hook is called before an order is presented -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Presenter/Order/OrderPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Order/OrderPresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionPresentOrder', ['presentedOrder' => &$orderLazyArray] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md b/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md index 27632dfcf9..a6f21074a4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md @@ -2,32 +2,24 @@ menuTitle: actionPresentOrderReturn Title: actionPresentOrderReturn hidden: true -hookTitle: Order Return Presenter +hookTitle: 'Order Return Presenter' files: - - src/Adapter/Presenter/Order/OrderReturnPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Order/OrderReturnPresenter.php' + file: src/Adapter/Presenter/Order/OrderReturnPresenter.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPresentOrderReturn - -## Information - -{{% notice tip %}} -**Order Return Presenter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called before an order return is presented' -This hook is called before an order return is presented -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Presenter/Order/OrderReturnPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Order/OrderReturnPresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionPresentOrderReturn', ['presentedOrderReturn' => &$orderReturnLazyArray] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md b/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md index e2e4163bf1..543be96014 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md @@ -2,32 +2,24 @@ menuTitle: actionPresentPaymentOptions Title: actionPresentPaymentOptions hidden: true -hookTitle: Payment options Presenter +hookTitle: 'Payment options Presenter' files: - - classes/checkout/PaymentOptionsFinder.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/PaymentOptionsFinder.php' + file: classes/checkout/PaymentOptionsFinder.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPresentPaymentOptions - -## Information - -{{% notice tip %}} -**Payment options Presenter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called before payment options are presented' -This hook is called before payment options are presented -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/checkout/PaymentOptionsFinder.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/PaymentOptionsFinder.php) +{{% hookDescriptor %}} ## Parameters details @@ -44,4 +36,4 @@ Located in: Hook::exec('actionPresentPaymentOptions', ['paymentOptions' => &$paymentOptions] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md b/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md index 0c9d891e3e..ec1de7c5f4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md @@ -2,32 +2,24 @@ menuTitle: actionPresentProduct Title: actionPresentProduct hidden: true -hookTitle: Product Presenter +hookTitle: 'Product Presenter' files: - - src/Adapter/Presenter/Product/ProductPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Product/ProductPresenter.php' + file: src/Adapter/Presenter/Product/ProductPresenter.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPresentProduct - -## Information - -{{% notice tip %}} -**Product Presenter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called before a product is presented' -This hook is called before a product is presented -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Presenter/Product/ProductPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Product/ProductPresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionPresentProduct', ['presentedProduct' => &$productLazyArray] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md b/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md index 0cb78dc7d9..dc4c5f716e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md @@ -2,32 +2,24 @@ menuTitle: actionPresentProductListing Title: actionPresentProductListing hidden: true -hookTitle: Product Listing Presenter +hookTitle: 'Product Listing Presenter' files: - - src/Adapter/Presenter/Product/ProductListingPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Product/ProductListingPresenter.php' + file: src/Adapter/Presenter/Product/ProductListingPresenter.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionPresentProductListing - -## Information - -{{% notice tip %}} -**Product Listing Presenter:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called before a product listing is presented' -This hook is called before a product listing is presented -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Presenter/Product/ProductListingPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Product/ProductListingPresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionPresentProductListing', ['presentedProduct' => &$productListingLazyArray] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductActivation.md b/modules/concepts/hooks/list-of-hooks/actionProductActivation.md index dfdb2c1244..70df854864 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductActivation.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductActivation.md @@ -2,29 +2,27 @@ menuTitle: actionProductActivation Title: actionProductActivation hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/Product/AdminProductDataUpdater.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataUpdater.php' + file: src/Adapter/Product/AdminProductDataUpdater.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionProductActivation - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/Adapter/Product/AdminProductDataUpdater.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataUpdater.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php dispatchWithParameters('actionProductActivation', ['id_product' => (int) $product->id, 'product' => $product, 'activated' => $activate]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md index fe8a8c28f9..dd2a55f95f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md @@ -2,39 +2,25 @@ menuTitle: actionProductAdd Title: actionProductAdd hidden: true -hookTitle: Product creation +hookTitle: 'Product creation' files: - - src/Adapter/Product/ProductDuplicator.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/ProductDuplicator.php' + file: src/Adapter/Product/ProductDuplicator.php locations: - - front office + - 'front office' type: action hookAliases: - - addproduct ---- - -# Hook actionProductAdd - -## Aliases - - - addproduct - - + - addproduct +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed after a product is created' -## Information - -{{% notice tip %}} -**Product creation:** - -This hook is displayed after a product is created -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Product/ProductDuplicator.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/ProductDuplicator.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -43,4 +29,4 @@ dispatchWithParameters( 'actionProductAdd', ['id_product_old' => $oldProductId, 'id_product' => $newProductId, 'product' => $newProduct] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md index 2b6268a882..ffb16ed3c5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md @@ -2,42 +2,28 @@ menuTitle: actionProductAttributeDelete Title: actionProductAttributeDelete hidden: true -hookTitle: Product attribute deletion +hookTitle: 'Product attribute deletion' files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: action hookAliases: - - deleteProductAttribute ---- - -# Hook actionProductAttributeDelete - -## Aliases - - - deleteProductAttribute - - + - deleteProductAttribute +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is displayed when a product's attribute is deleted" -## Information - -{{% notice tip %}} -**Product attribute deletion:** - -This hook is displayed when a product's attribute is deleted -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionProductAttributeDelete', ['id_product_attribute' => 0, 'id_product' => (int) $this->id, 'deleteAllAttributes' => true]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md index 98a51aaf9c..fac0d9cea9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md @@ -2,42 +2,28 @@ menuTitle: actionProductAttributeUpdate Title: actionProductAttributeUpdate hidden: true -hookTitle: Product attribute update +hookTitle: 'Product attribute update' files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: action hookAliases: - - updateProductAttribute ---- - -# Hook actionProductAttributeUpdate - -## Aliases - - - updateProductAttribute - - + - updateProductAttribute +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is displayed when a product's attribute is updated" -## Information - -{{% notice tip %}} -**Product attribute update:** - -This hook is displayed when a product's attribute is updated -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionProductAttributeUpdate', ['id_product_attribute' => (int) $id_product_attribute]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md index f469414e42..97a97dee3f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md @@ -2,42 +2,28 @@ menuTitle: actionProductCancel Title: actionProductCancel hidden: true -hookTitle: Product cancelled +hookTitle: 'Product cancelled' files: - - src/Adapter/Order/CommandHandler/IssueStandardRefundHandler.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/CommandHandler/IssueStandardRefundHandler.php' + file: src/Adapter/Order/CommandHandler/IssueStandardRefundHandler.php locations: - - front office + - 'front office' type: action hookAliases: - - cancelProduct ---- - -# Hook actionProductCancel - -## Aliases - - - cancelProduct - - + - cancelProduct +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when you cancel a product in an order' -## Information - -{{% notice tip %}} -**Product cancelled:** - -This hook is called when you cancel a product in an order -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Order/CommandHandler/IssueStandardRefundHandler.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Order/CommandHandler/IssueStandardRefundHandler.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionProductCancel', ['order' => $order, 'id_order_detail' => (int) $orderDetailId, 'cancel_quantity' => $productRefund['quantity'], 'action' => CancellationActionType::STANDARD_REFUND], null, false, true, false, $order->id_shop) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md b/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md index d2ba0a84de..da3d978c73 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md @@ -2,26 +2,24 @@ menuTitle: actionProductCoverage Title: actionProductCoverage hidden: true -hookTitle: +hookTitle: null files: - - classes/stock/StockManager.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/stock/StockManager.php' + file: classes/stock/StockManager.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionProductCoverage - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/stock/StockManager.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/stock/StockManager.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -34,4 +32,4 @@ Hook::exec( 'warehouse' => $warehouse, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md index 8644b712c7..18167b9879 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md @@ -2,42 +2,28 @@ menuTitle: actionProductDelete Title: actionProductDelete hidden: true -hookTitle: Product deletion +hookTitle: 'Product deletion' files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: action hookAliases: - - deleteproduct ---- - -# Hook actionProductDelete - -## Aliases - - - deleteproduct - - + - deleteproduct +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when a product is deleted' -## Information - -{{% notice tip %}} -**Product deletion:** - -This hook is called when a product is deleted -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionProductDelete', ['id_product' => (int) $this->id, 'product' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md index f5c87bf903..36f5d78c40 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md @@ -2,43 +2,28 @@ menuTitle: actionProductOutOfStock Title: actionProductOutOfStock hidden: true -hookTitle: Out-of-stock product +hookTitle: 'Out-of-stock product' files: - - Classic Theme: templates/catalog/_partials/product-details.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-details.tpl' + file: 'Classic Theme: templates/catalog/_partials/product-details.tpl' locations: - - front office + - 'front office' type: action hookAliases: - - productOutOfStock + - productOutOfStock origin: theme ---- - -# Hook actionProductOutOfStock - -## Aliases - - - productOutOfStock - -## Information - -{{% notice tip %}} -**Out-of-stock product:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new action buttons if a product is out of stock' -This hook displays new action buttons if a product is out of stock -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/_partials/product-details.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-details.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='actionProductOutOfStock' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md b/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md index 0189aa41f9..b4b2b38b3c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md @@ -2,32 +2,24 @@ menuTitle: actionProductPriceCalculation Title: actionProductPriceCalculation hidden: true -hookTitle: Product Price Calculation +hookTitle: 'Product Price Calculation' files: - - controllers/admin/AdminLoginController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.1.x/classes/Product.php' + file: classes/Product.php locations: - - back office + - 'back office' type: action -hookAliases: ---- - -# Hook actionProductPriceCalculation {{< minver v="8.1" >}} - -## Information - -{{% notice tip %}} -**Product Price Calculation:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called into the priceCalculation method to be able to override the price calculatio' -This hook is called into the priceCalculation method to be able to override the price calculation{{% /notice %}} - -Hook locations: - - back office - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.1.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -59,4 +51,4 @@ Hook::exec('actionProductPriceCalculation', [ 'specific_price_reduction' => &$specific_price_reduction, 'price' => &$price, ]); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSave.md b/modules/concepts/hooks/list-of-hooks/actionProductSave.md index 0ed9dbe337..c582ab17bf 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSave.md @@ -2,42 +2,28 @@ menuTitle: actionProductSave Title: actionProductSave hidden: true -hookTitle: Saving products +hookTitle: 'Saving products' files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: action hookAliases: - - afterSaveProduct ---- - -# Hook actionProductSave - -## Aliases - - - afterSaveProduct - - + - afterSaveProduct +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called while saving products' -## Information - -{{% notice tip %}} -**Saving products:** - -This hook is called while saving products -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionProductSave', ['id_product' => (int) $this->id, 'product' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md index 0b56333b83..adc5143132 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md @@ -2,38 +2,27 @@ menuTitle: actionProductSearchAfter Title: actionProductSearchAfter hidden: true -hookTitle: Event triggered after search product completed +hookTitle: 'Event triggered after search product completed' files: - - modules/blockwishlist/controllers/front/view.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/view.php' + file: modules/blockwishlist/controllers/front/view.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: module ---- - -# Hook actionProductSearchAfter - -## Information - -{{% notice tip %}} -**Event triggered after search product completed:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook is called after the product search. Parameters are already filter' -This hook is called after the product search. Parameters are already filter -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/blockwishlist/controllers/front/view.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/view.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionProductSearchAfter', $searchVariables) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md index 09659e7d74..08db73dd24 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md @@ -2,32 +2,24 @@ menuTitle: actionProductSearchProviderRunQueryAfter Title: actionProductSearchProviderRunQueryAfter hidden: true -hookTitle: Runs an action after ProductSearchProviderInterface::RunQuery() +hookTitle: 'Runs an action after ProductSearchProviderInterface::RunQuery()' files: - - classes/controller/ProductListingFrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/ProductListingFrontController.php' + file: classes/controller/ProductListingFrontController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionProductSearchProviderRunQueryAfter - -## Information - -{{% notice tip %}} -**Runs an action after ProductSearchProviderInterface::RunQuery():** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'Required to return a previous state of an SQL query or/and to change a result of the SQL query after executing it' -Required to return a previous state of an SQL query or/and to change a result of the SQL query after executing it -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/ProductListingFrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/ProductListingFrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -36,4 +28,4 @@ Hook::exec('actionProductSearchProviderRunQueryAfter', [ 'query' => $query, 'result' => $result, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md index 4e3351bf86..d191d75cf2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md @@ -2,32 +2,24 @@ menuTitle: actionProductSearchProviderRunQueryBefore Title: actionProductSearchProviderRunQueryBefore hidden: true -hookTitle: Runs an action before ProductSearchProviderInterface::RunQuery() +hookTitle: 'Runs an action before ProductSearchProviderInterface::RunQuery()' files: - - classes/controller/ProductListingFrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/ProductListingFrontController.php' + file: classes/controller/ProductListingFrontController.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionProductSearchProviderRunQueryBefore - -## Information - -{{% notice tip %}} -**Runs an action before ProductSearchProviderInterface::RunQuery():** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'Required to modify an SQL query before executing it' -Required to modify an SQL query before executing it -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/controller/ProductListingFrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/ProductListingFrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +27,4 @@ Located in: Hook::exec('actionProductSearchProviderRunQueryBefore', [ 'query' => $query, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md index 08233cf4c9..ae36666e83 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md @@ -2,42 +2,28 @@ menuTitle: actionProductUpdate Title: actionProductUpdate hidden: true -hookTitle: Product update +hookTitle: 'Product update' files: - - src/Adapter/Product/AdminProductWrapper.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductWrapper.php' + file: src/Adapter/Product/AdminProductWrapper.php locations: - - back office + - 'back office' type: action hookAliases: - - updateproduct ---- - -# Hook actionProductUpdate - -## Aliases - - - updateproduct - - + - updateproduct +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed after a product has been updated' -## Information - -{{% notice tip %}} -**Product update:** - -This hook is displayed after a product has been updated -{{% /notice %}} - -Hook locations: - - back office - -Hook type: action +--- -Located in: - - [src/Adapter/Product/AdminProductWrapper.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductWrapper.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionProductUpdate', ['id_product' => (int) $product->id, 'product' => $product]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionSearch.md b/modules/concepts/hooks/list-of-hooks/actionSearch.md index 0b8bd88eb6..c857b24020 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSearch.md +++ b/modules/concepts/hooks/list-of-hooks/actionSearch.md @@ -2,26 +2,24 @@ menuTitle: actionSearch Title: actionSearch hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/Search/SearchProductSearchProvider.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Search/SearchProductSearchProvider.php' + file: src/Adapter/Search/SearchProductSearchProvider.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionSearch - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Search/SearchProductSearchProvider.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Search/SearchProductSearchProvider.php) +{{% hookDescriptor %}} ## Parameters details @@ -43,4 +41,4 @@ Hook::exec('actionSearch', [ // deprecated since 1.7.x 'expr' => $queryString, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md b/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md index 4d4882af77..96c1d8e9df 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md +++ b/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md @@ -2,26 +2,24 @@ menuTitle: actionSetInvoice Title: actionSetInvoice hidden: true -hookTitle: +hookTitle: null files: - - classes/order/Order.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/Order.php' + file: classes/order/Order.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionSetInvoice - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/order/Order.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/Order.php) +{{% hookDescriptor %}} ## Parameters details @@ -42,4 +40,4 @@ Hook::exec('actionSetInvoice', [ get_class($order_invoice) => $order_invoice, 'use_existing_payment' => (bool) $use_existing_payment, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md b/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md index ffe5e972eb..a856511ee2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md +++ b/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md @@ -2,26 +2,24 @@ menuTitle: actionShopDataDuplication Title: actionShopDataDuplication hidden: true -hookTitle: +hookTitle: null files: - - classes/shop/Shop.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/shop/Shop.php' + file: classes/shop/Shop.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionShopDataDuplication - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/shop/Shop.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/shop/Shop.php) +{{% hookDescriptor %}} ## Parameters details @@ -40,4 +38,4 @@ Hook::exec('actionShopDataDuplication', [ 'old_id_shop' => (int) $old_id, 'new_id_shop' => (int) $this->id, ], $m['id_module']) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md index c860fd53f4..d36cc0211a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md @@ -2,36 +2,28 @@ menuTitle: actionSubmitAccountBefore Title: actionSubmitAccountBefore hidden: true -hookTitle: +hookTitle: null files: - - controllers/front/RegistrationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/RegistrationController.php' + file: controllers/front/RegistrationController.php locations: - - front office + - 'front office' type: action hookAliases: - - actionBeforeSubmitAccount ---- - -# Hook actionSubmitAccountBefore - -## Aliases - - - actionBeforeSubmitAccount - + - actionBeforeSubmitAccount +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' +--- -## Information - -Hook locations: - - front office - -Hook type: action - -Located in: - - [controllers/front/RegistrationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/RegistrationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionSubmitAccountBefore', [], null, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md b/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md index 6be654633b..463b05f94f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md @@ -2,29 +2,27 @@ menuTitle: actionSubmitCustomerAddressForm Title: actionSubmitCustomerAddressForm hidden: true -hookTitle: +hookTitle: null files: - - classes/form/CustomerAddressForm.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerAddressForm.php' + file: classes/form/CustomerAddressForm.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionSubmitCustomerAddressForm - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/form/CustomerAddressForm.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerAddressForm.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionSubmitCustomerAddressForm', ['address' => &$address]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md b/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md index 83535437e1..85caf272b7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md @@ -2,35 +2,27 @@ menuTitle: actionUpdateLangAfter Title: actionUpdateLangAfter hidden: true -hookTitle: Update "lang" tables +hookTitle: 'Update "lang" tables' files: - - classes/Language.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Language.php' + file: classes/Language.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionUpdateLangAfter - -## Information - -{{% notice tip %}} -**Update "lang" tables:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'Update "lang" tables after adding or updating a language' -Update "lang" tables after adding or updating a language -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/Language.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Language.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('actionUpdateLangAfter', ['lang' => $language]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md index 68a9131878..602bb42fb5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md +++ b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md @@ -2,39 +2,25 @@ menuTitle: actionUpdateQuantity Title: actionUpdateQuantity hidden: true -hookTitle: Quantity update +hookTitle: 'Quantity update' files: - - classes/stock/StockAvailable.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/stock/StockAvailable.php' + file: classes/stock/StockAvailable.php locations: - - front office + - 'front office' type: action hookAliases: - - updateQuantity ---- - -# Hook actionUpdateQuantity - -## Aliases - - - updateQuantity - - - -## Information + - updateQuantity +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'Quantity is updated only when a customer effectively places their order' -{{% notice tip %}} -**Quantity update:** - -Quantity is updated only when a customer effectively places their order -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/stock/StockAvailable.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/stock/StockAvailable.php) +{{% hookDescriptor %}} ## Parameters details @@ -59,4 +45,4 @@ Hook::exec( 'id_shop' => $id_shop, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md b/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md index de049506c0..5f5caa9d25 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md @@ -2,32 +2,24 @@ menuTitle: actionValidateCustomerAddressForm Title: actionValidateCustomerAddressForm hidden: true -hookTitle: Customer address form validation +hookTitle: 'Customer address form validation' files: - - classes/form/CustomerAddressForm.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerAddressForm.php' + file: classes/form/CustomerAddressForm.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionValidateCustomerAddressForm - -## Information - -{{% notice tip %}} -**Customer address form validation:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when a customer submit its address form' -This hook is called when a customer submit its address form -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/form/CustomerAddressForm.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerAddressForm.php) +{{% hookDescriptor %}} ## Parameters details @@ -42,4 +34,4 @@ Located in: ```php Hook::exec('actionValidateCustomerAddressForm', ['form' => $this]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md index 0dbe8d9733..5960153566 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md @@ -2,40 +2,26 @@ menuTitle: actionValidateOrder Title: actionValidateOrder hidden: true -hookTitle: New orders +hookTitle: 'New orders' files: - - classes/PaymentModule.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/PaymentModule.php' + file: classes/PaymentModule.php locations: - - front office + - 'front office' type: action hookAliases: - - newOrder + - newOrder hasExample: true ---- - -# Hook actionValidateOrder - -## Aliases - - - newOrder - - - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**New orders:** - - -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/PaymentModule.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/PaymentModule.php) +{{% hookDescriptor %}} ## Parameters details @@ -132,4 +118,4 @@ class MyModuleRewardCustomerWhenOrder extends Module // notify the customer } } -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md index 4bba7372be..963e767162 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md @@ -2,32 +2,24 @@ menuTitle: actionValidateOrderAfter Title: actionValidateOrderAfter hidden: true -hookTitle: After validating an order +hookTitle: 'After validating an order' files: - - classes/PaymentModule.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/PaymentModule.php' + file: classes/PaymentModule.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionValidateOrderAfter - -## Information - -{{% notice tip %}} -**After validating an order:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called after validating an order by core' -This hook is called after validating an order by core -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/PaymentModule.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/PaymentModule.php) +{{% hookDescriptor %}} ## Parameters details @@ -57,4 +49,4 @@ Hook::exec( 'orderStatus' => new OrderState(isset($order) ? $order->current_state : null), ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md b/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md index bee115e699..f44b1fd7d3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md @@ -2,26 +2,24 @@ menuTitle: actionValidateStepComplete Title: actionValidateStepComplete hidden: true -hookTitle: +hookTitle: null files: - - classes/checkout/CheckoutDeliveryStep.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php' + file: classes/checkout/CheckoutDeliveryStep.php locations: - - front office + - 'front office' type: action -hookAliases: ---- - -# Hook actionValidateStepComplete - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [classes/checkout/CheckoutDeliveryStep.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php) +{{% hookDescriptor %}} ## Parameters details @@ -46,4 +44,4 @@ Hook::exec( ], Module::getModuleIdByName($currentDeliveryOption['external_module_name']) ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionWatermark.md b/modules/concepts/hooks/list-of-hooks/actionWatermark.md index 79b8227230..638eb612a2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWatermark.md +++ b/modules/concepts/hooks/list-of-hooks/actionWatermark.md @@ -4,37 +4,23 @@ Title: actionWatermark hidden: true hookTitle: Watermark files: - - src/Adapter/Product/Image/Uploader/ProductImageUploader.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/Image/Uploader/ProductImageUploader.php' + file: src/Adapter/Product/Image/Uploader/ProductImageUploader.php locations: - - front office + - 'front office' type: action hookAliases: - - watermark ---- - -# Hook actionWatermark - -## Aliases - - - watermark - - - -## Information + - watermark +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**Watermark:** - - -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action +--- -Located in: - - [src/Adapter/Product/Image/Uploader/ProductImageUploader.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/Image/Uploader/ProductImageUploader.php) +{{% hookDescriptor %}} ## Parameters details @@ -53,4 +39,4 @@ dispatchWithParameters( 'actionWatermark', ['id_image' => $imageId->getValue(), 'id_product' => $productId] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md index c71dc7020e..96db8b2a32 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md @@ -2,29 +2,24 @@ menuTitle: actionWishlistAddProduct Title: actionWishlistAddProduct hidden: true -hookTitle: +hookTitle: null files: - - modules/blockwishlist/controllers/front/action.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/action.php' + file: modules/blockwishlist/controllers/front/action.php locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: module ---- - -# Hook actionWishlistAddProduct - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: action - -Hook origin: module +--- -Located in: - - [modules/blockwishlist/controllers/front/action.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/action.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +30,4 @@ Hook::exec('actionWishlistAddProduct', [ 'idProduct' => $id_product, 'idProductAttribute' => $id_product_attribute, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md b/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md index d5b9dfd511..b15ff71a83 100644 --- a/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md +++ b/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md @@ -2,39 +2,27 @@ menuTitle: addWebserviceResources Title: addWebserviceResources hidden: true -hookTitle: Add extra webservice resource +hookTitle: 'Add extra webservice resource' files: - - classes/webservice/WebserviceRequest.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/webservice/WebserviceRequest.php' + file: classes/webservice/WebserviceRequest.php locations: - - front office -type: -hookAliases: ---- - -# Hook addWebserviceResources - -## Information - -{{% notice tip %}} -**Add extra webservice resource:** - -This hook is called when webservice resources list in webservice controller -{{% /notice %}} + - 'front office' +type: null +hookAliases: null +array_return: true +check_exceptions: true +chain: false +origin: core +description: 'This hook is called when webservice resources list in webservice controller' -Hook locations: - - front office - -Hook type: - -Located in: - - [classes/webservice/WebserviceRequest.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/webservice/WebserviceRequest.php) - -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +--- -This hook has a `$check_exceptions` parameter set to `false` (check permission exceptions, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('addWebserviceResources', ['resources' => $resources], null, true, false) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md index 74d47a10ff..4474484f5b 100644 --- a/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md @@ -2,37 +2,27 @@ menuTitle: additionalCustomerAddressFields Title: additionalCustomerAddressFields hidden: true -hookTitle: Add fields to the Customer address form +hookTitle: 'Add fields to the Customer address form' files: - - classes/form/CustomerAddressFormatter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerAddressFormatter.php' + file: classes/form/CustomerAddressFormatter.php locations: - - front office -type: -hookAliases: ---- - -# Hook additionalCustomerAddressFields - -## Information - -{{% notice tip %}} -**Add fields to the Customer address form:** + - 'front office' +type: null +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook returns an array of FormFields to add them to the customer address registration form' -This hook returns an array of FormFields to add them to the customer address registration form -{{% /notice %}} - -Hook locations: - - front office - -Hook type: - -Located in: - - [classes/form/CustomerAddressFormatter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerAddressFormatter.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('additionalCustomerAddressFields', ['fields' => &$format], null, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md b/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md index 39c7d9e991..b07a2f5484 100644 --- a/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md +++ b/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md @@ -2,37 +2,27 @@ menuTitle: additionalCustomerFormFields Title: additionalCustomerFormFields hidden: true -hookTitle: Add fields to the Customer form +hookTitle: 'Add fields to the Customer form' files: - - classes/form/CustomerFormatter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerFormatter.php' + file: classes/form/CustomerFormatter.php locations: - - front office -type: -hookAliases: ---- - -# Hook additionalCustomerFormFields - -## Information - -{{% notice tip %}} -**Add fields to the Customer form:** + - 'front office' +type: null +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook returns an array of FormFields to add them to the customer registration form' -This hook returns an array of FormFields to add them to the customer registration form -{{% /notice %}} - -Hook locations: - - front office - -Hook type: - -Located in: - - [classes/form/CustomerFormatter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerFormatter.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('additionalCustomerFormFields', ['fields' => &$format], null, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/dashboardData.md b/modules/concepts/hooks/list-of-hooks/dashboardData.md index 22a7c157d5..6f44dc7df4 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardData.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardData.md @@ -2,31 +2,27 @@ menuTitle: dashboardData Title: dashboardData hidden: true -hookTitle: +hookTitle: null files: - - controllers/admin/AdminDashboardController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php' + file: controllers/admin/AdminDashboardController.php locations: - - back office -type: -hookAliases: ---- - -# Hook dashboardData - -## Information + - 'back office' +type: null +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: - -Located in: - - [controllers/admin/AdminDashboardController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('dashboardData', $params, $id_module, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md index 4bf6101b67..cedb4aecc9 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md @@ -2,29 +2,27 @@ menuTitle: dashboardZoneOne Title: dashboardZoneOne hidden: true -hookTitle: +hookTitle: null files: - - controllers/admin/AdminDashboardController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php' + file: controllers/admin/AdminDashboardController.php locations: - - back office -type: -hookAliases: ---- - -# Hook dashboardZoneOne - -## Information + - 'back office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: +--- -Located in: - - [controllers/admin/AdminDashboardController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('dashboardZoneOne', $params) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md index 3c322a9fc9..f65dee9bc4 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md @@ -2,32 +2,24 @@ menuTitle: dashboardZoneThree Title: dashboardZoneThree hidden: true -hookTitle: Dashboard column three +hookTitle: 'Dashboard column three' files: - - controllers/admin/AdminDashboardController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php' + file: controllers/admin/AdminDashboardController.php locations: - - back office -type: -hookAliases: ---- - -# Hook dashboardZoneThree - -## Information - -{{% notice tip %}} -**Dashboard column three:** + - 'back office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed in the third column of the dashboard' -This hook is displayed in the third column of the dashboard -{{% /notice %}} - -Hook locations: - - back office - -Hook type: +--- -Located in: - - [controllers/admin/AdminDashboardController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php) +{{% hookDescriptor %}} ## Parameters details @@ -43,4 +35,4 @@ Located in: ```php Hook::exec('dashboardZoneThree', $params) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md index b3eee325c1..2fb93af302 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md @@ -2,29 +2,27 @@ menuTitle: dashboardZoneTwo Title: dashboardZoneTwo hidden: true -hookTitle: +hookTitle: null files: - - controllers/admin/AdminDashboardController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php' + file: controllers/admin/AdminDashboardController.php locations: - - back office -type: -hookAliases: ---- - -# Hook dashboardZoneTwo - -## Information + - 'back office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: +--- -Located in: - - [controllers/admin/AdminDashboardController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('dashboardZoneTwo', $params) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md b/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md index 481d9372bd..17051d042f 100644 --- a/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md +++ b/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md @@ -2,26 +2,24 @@ menuTitle: deleteProductAttribute Title: deleteProductAttribute hidden: true -hookTitle: +hookTitle: null files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office -type: -hookAliases: ---- - -# Hook deleteProductAttribute - -## Information + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -34,4 +32,4 @@ Hook::exec( 'deleteAllAttributes' => false, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md index f164fd110c..3ea1391459 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md @@ -2,38 +2,27 @@ menuTitle: displayAdditionalCustomerAddressFields Title: displayAdditionalCustomerAddressFields hidden: true -hookTitle: Display additional customer address fields +hookTitle: 'Display additional customer address fields' files: - - Classic Theme: templates/customer/_partials/block-address.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/_partials/block-address.tpl' + file: 'Classic Theme: templates/customer/_partials/block-address.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayAdditionalCustomerAddressFields - -## Information - -{{% notice tip %}} -**Display additional customer address fields:** +array_return: false +check_exceptions: false +chain: false +description: "This hook allows to display extra field values added in an address form using hook 'additionalCustomerAddressFields'" -This hook allows to display extra field values added in an address form using hook 'additionalCustomerAddressFields' -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/customer/_partials/block-address.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/_partials/block-address.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdditionalCustomerAddressFields' address=$address} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md index 686afd2924..31e69a5776 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md @@ -2,39 +2,28 @@ menuTitle: displayAddressSelectorBottom Title: displayAddressSelectorBottom hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/_partials/steps/addresses.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/addresses.tpl' + file: 'Classic Theme: templates/checkout/_partials/steps/addresses.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null since: 8.1.0 origin: theme ---- - -# Hook displayAddressSelectorBottom - -## Information - -{{% notice tip %}} -**Add a message (or other content) on address step of checkout** -{{% /notice %}} +array_return: false +check_exceptions: false +chain: false +description: '' -Available since : {{< minver v="8.1.0" >}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/steps/addresses.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/addresses.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAddressSelectorBottom'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md b/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md index 9595fa829c..50fc4c219e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md @@ -2,29 +2,27 @@ menuTitle: displayAdminAfterHeader Title: displayAdminAfterHeader hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/new-theme/template/light_display_layout.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/light_display_layout.tpl' + file: admin-dev/themes/new-theme/template/light_display_layout.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminAfterHeader - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/new-theme/template/light_display_layout.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/light_display_layout.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminAfterHeader'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md index 3f24e00972..13f3a8e477 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md @@ -2,39 +2,25 @@ menuTitle: displayAdminCustomers Title: displayAdminCustomers hidden: true -hookTitle: Display new elements in the Back Office, tab AdminCustomers +hookTitle: 'Display new elements in the Back Office, tab AdminCustomers' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/view.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/view.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/view.html.twig locations: - - back office + - 'back office' type: display hookAliases: - - adminCustomers ---- - -# Hook displayAdminCustomers - -## Aliases - - - adminCustomers - - - -## Information + - adminCustomers +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the AdminCustomers tab is displayed in the Back Office' -{{% notice tip %}} -**Display new elements in the Back Office, tab AdminCustomers:** - -This hook launches modules when the AdminCustomers tab is displayed in the Back Office -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/view.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Customer/view.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -49,4 +35,4 @@ Located in: ```php {{ renderhook('displayAdminCustomers', {'id_customer': customerInformation.customerId.value}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md b/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md index f18b5cf88f..17fcc0f5bc 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md @@ -2,35 +2,27 @@ menuTitle: displayAdminEndContent Title: displayAdminEndContent hidden: true -hookTitle: Administration end of content +hookTitle: 'Administration end of content' files: - - admin-dev/themes/new-theme/template/light_display_layout.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/light_display_layout.tpl' + file: admin-dev/themes/new-theme/template/light_display_layout.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminEndContent - -## Information - -{{% notice tip %}} -**Administration end of content:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed at the end of the main content, before the footer' -This hook is displayed at the end of the main content, before the footer -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/new-theme/template/light_display_layout.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/light_display_layout.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminEndContent'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminForm.md b/modules/concepts/hooks/list-of-hooks/displayAdminForm.md index 89ae528a5e..1ccf8f9141 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminForm.md @@ -2,29 +2,27 @@ menuTitle: displayAdminForm Title: displayAdminForm hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/default/template/helpers/form/form.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/form/form.tpl' + file: admin-dev/themes/default/template/helpers/form/form.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminForm - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/default/template/helpers/form/form.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/form/form.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminForm' fieldset=$f} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md index 7d5242d4d4..60467cbe1c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md @@ -2,39 +2,25 @@ menuTitle: displayAdminGridTableAfter Title: displayAdminGridTableAfter hidden: true -hookTitle: Display after Grid table +hookTitle: 'Display after Grid table' files: - - src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig locations: - - back office + - 'back office' type: display hookAliases: - - displayAdminListAfter ---- - -# Hook displayAdminGridTableAfter - -## Aliases - - - displayAdminListAfter - - - -## Information + - displayAdminListAfter +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook adds new blocks after Grid component table' -{{% notice tip %}} -**Display after Grid table:** - -This hook adds new blocks after Grid component table -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -56,4 +42,4 @@ Located in: 'controller': app.request.attributes.get('_controller') }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md index e022f63202..c75a30a4fd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md @@ -2,39 +2,25 @@ menuTitle: displayAdminGridTableBefore Title: displayAdminGridTableBefore hidden: true -hookTitle: Display before Grid table +hookTitle: 'Display before Grid table' files: - - src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig locations: - - back office + - 'back office' type: display hookAliases: - - displayAdminListBefore ---- - -# Hook displayAdminGridTableBefore - -## Aliases - - - displayAdminListBefore - - - -## Information + - displayAdminListBefore +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook adds new blocks before Grid component table' -{{% notice tip %}} -**Display before Grid table:** - -This hook adds new blocks before Grid component table -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Common/Grid/Blocks/table.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -56,4 +42,4 @@ Located in: 'controller': app.request.attributes.get('_controller') }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md index 496e14703a..db3b8d1d17 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md @@ -2,29 +2,27 @@ menuTitle: displayAdminListAfter Title: displayAdminListAfter hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/default/template/helpers/list/list_footer.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/list/list_footer.tpl' + file: admin-dev/themes/default/template/helpers/list/list_footer.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminListAfter - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/default/template/helpers/list/list_footer.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/list/list_footer.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminListAfter'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md b/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md index b2bc3f6601..5f0c447072 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md @@ -2,29 +2,27 @@ menuTitle: displayAdminListBefore Title: displayAdminListBefore hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/default/template/helpers/list/list_header.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/list/list_header.tpl' + file: admin-dev/themes/default/template/helpers/list/list_header.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminListBefore - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/default/template/helpers/list/list_header.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/list/list_header.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminListBefore'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md b/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md index 8fd834a722..6695a6efdf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md @@ -2,29 +2,27 @@ menuTitle: displayAdminNavBarBeforeEnd Title: displayAdminNavBarBeforeEnd hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/new-theme/template/components/layout/nav_bar.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/components/layout/nav_bar.tpl' + file: admin-dev/themes/new-theme/template/components/layout/nav_bar.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminNavBarBeforeEnd - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/new-theme/template/components/layout/nav_bar.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/components/layout/nav_bar.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminNavBarBeforeEnd'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md b/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md index 2ad844010b..1073d32e52 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md @@ -2,29 +2,27 @@ menuTitle: displayAdminOptions Title: displayAdminOptions hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/default/template/helpers/options/options.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/options/options.tpl' + file: admin-dev/themes/default/template/helpers/options/options.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminOptions - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/default/template/helpers/options/options.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/options/options.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminOptions'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md index 4474c98c90..b6453b1ef6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md @@ -2,38 +2,26 @@ menuTitle: displayAdminOrder Title: displayAdminOrder hidden: true -hookTitle: Display new elements in the Back Office, tab AdminOrder +hookTitle: 'Display new elements in the Back Office, tab AdminOrder' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig locations: - - back office + - 'back office' type: display hookAliases: - - adminOrder + - adminOrder hasExample: true ---- - -# Hook displayAdminOrder - -## Aliases - - - adminOrder - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the AdminOrder tab is displayed in the Back Office' -{{% notice tip %}} -**Display new elements in the Back Office, tab AdminOrder:** - -This hook launches modules when the AdminOrder tab is displayed in the Back Office -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -52,4 +40,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md index 953665128f..fde8ab844f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md @@ -2,35 +2,27 @@ menuTitle: displayAdminOrderCreateExtraButtons Title: displayAdminOrderCreateExtraButtons hidden: true -hookTitle: Add buttons on the create order page dropdown +hookTitle: 'Add buttons on the create order page dropdown' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/Create/summary.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/Create/summary.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/Create/summary.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminOrderCreateExtraButtons - -## Information - -{{% notice tip %}} -**Add buttons on the create order page dropdown:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'Add buttons on the create order page dropdown' -Add buttons on the create order page dropdown -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/Create/summary.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/Create/summary.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminOrderCreateExtraButtons') }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md index a540d51e3f..695769f07d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md @@ -2,33 +2,25 @@ menuTitle: displayAdminOrderMain Title: displayAdminOrderMain hidden: true -hookTitle: Admin Order Main Column +hookTitle: 'Admin Order Main Column' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig locations: - - back office + - 'back office' type: display -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook displayAdminOrderMain - -## Information - -{{% notice tip %}} -**Admin Order Main Column:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays content in the order view page in the main column under the details view' -This hook displays content in the order view page in the main column under the details view -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -47,4 +39,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md index e323e6c1bd..81d571dd99 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md @@ -2,32 +2,24 @@ menuTitle: displayAdminOrderMainBottom Title: displayAdminOrderMainBottom hidden: true -hookTitle: Admin Order Main Column Bottom +hookTitle: 'Admin Order Main Column Bottom' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminOrderMainBottom - -## Information - -{{% notice tip %}} -**Admin Order Main Column Bottom:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays content in the order view page at the bottom of the main column' -This hook displays content in the order view page at the bottom of the main column -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -42,4 +34,4 @@ Located in: ```php {{ renderhook('displayAdminOrderMainBottom', {'id_order': orderForViewing.id}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md index ef4404ccd9..f19a587798 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md @@ -2,37 +2,25 @@ menuTitle: displayAdminOrderSide Title: displayAdminOrderSide hidden: true -hookTitle: Admin Order Side Column +hookTitle: 'Admin Order Side Column' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig locations: - - back office + - 'back office' type: display hookAliases: - - displayBackofficeOrderActions ---- - -# Hook displayAdminOrderSide - -## Aliases - - - displayBackofficeOrderActions - -## Information - -{{% notice tip %}} -**Admin Order Side Column:** + - displayBackofficeOrderActions +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays content in the order view page in the side column under the customer view' -This hook displays content in the order view page in the side column under the customer view -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -47,4 +35,4 @@ Located in: ```php {{ renderhook('displayAdminOrderSide', {'id_order': orderForViewing.id}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md index 8e45ddbed1..6c21c71f18 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md @@ -2,27 +2,25 @@ menuTitle: displayAdminOrderSideBottom Title: displayAdminOrderSideBottom hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig locations: - - back office + - 'back office' type: display -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook displayAdminOrderSideBottom - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -41,4 +39,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md index 8740e6cfa7..3e8c285e75 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md @@ -2,31 +2,25 @@ menuTitle: displayAdminOrderTabContent Title: displayAdminOrderTabContent hidden: true -hookTitle: Display new elements in the Back Office, tab contents on order +hookTitle: 'Display new elements in the Back Office, tab contents on order' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig locations: - - back office + - 'back office' type: display -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook displayAdminOrderTabContent - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**Display new elements in the Back Office, tab contents on order** -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -36,4 +30,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md index 55af600c0b..a55d4b6940 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md @@ -2,31 +2,25 @@ menuTitle: displayAdminOrderTabLink Title: displayAdminOrderTabLink hidden: true -hookTitle: Display new elements in the Back Office, tab links on order +hookTitle: 'Display new elements in the Back Office, tab links on order' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig locations: - - back office + - 'back office' type: display -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook displayAdminOrderTabLink - -## Information +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**Display new elements in the Back Office, tab contents on order** -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/details.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -36,4 +30,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md index 496f113feb..52231dae9d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md @@ -2,33 +2,25 @@ menuTitle: displayAdminOrderTop Title: displayAdminOrderTop hidden: true -hookTitle: Display new elements in the Back Office, top of Order page +hookTitle: 'Display new elements in the Back Office, top of Order page' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig locations: - - back office + - 'back office' type: display -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook displayAdminOrderTop - -## Information - -{{% notice tip %}} -**Display new elements in the Back Office, top of Order page:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the Order is displayed in the Back Office' -This hook launches modules when the Order is displayed in the Back Office -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md index 74cc2f280b..80604d519f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsCombinationBottom Title: displayAdminProductsCombinationBottom hidden: true -hookTitle: Display new elements in back office product page, Combination tab +hookTitle: 'Display new elements in back office product page, Combination tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_combination.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_combination.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_combination.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsCombinationBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, Combination tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_combination.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_combination.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsCombinationBottom', { 'id_product': form.vars.value.id_product, 'id_product_attribute': form.vars.value.id_product_attribute }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md index 4df09ede6a..c278c5bd53 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md @@ -2,33 +2,25 @@ menuTitle: displayAdminProductsExtra Title: displayAdminProductsExtra hidden: true -hookTitle: Display new elements in back office product page, Extra tab +hookTitle: 'Display new elements in back office product page, Extra tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/product.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/product.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/product.html.twig locations: - - back office + - 'back office' type: display -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook displayAdminProductsExtra - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, Extra tab:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/product.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/product.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demoproductform](https://github.com/PrestaShop/example-modules/tree/master/demoproductform). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demoproductform](https://github.com/PrestaShop/example-modules/tree/master/demoproductform). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md index 4addb039bb..738cfb8714 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsMainStepLeftColumnBottom Title: displayAdminProductsMainStepLeftColumnBottom hidden: true -hookTitle: Display new elements in back office product page, left column of the Basic settings tab +hookTitle: 'Display new elements in back office product page, left column of the Basic settings tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsMainStepLeftColumnBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, left column of the Basic settings tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsMainStepLeftColumnBottom', { 'id_product': productId }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md index e8d255295c..ef1d15e1df 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsMainStepLeftColumnMiddle Title: displayAdminProductsMainStepLeftColumnMiddle hidden: true -hookTitle: Display new elements in back office product page, left column of the Basic settings tab +hookTitle: 'Display new elements in back office product page, left column of the Basic settings tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsMainStepLeftColumnMiddle - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, left column of the Basic settings tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsMainStepLeftColumnMiddle', { 'id_product': productId }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md index f937d53692..516dab5ba9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsMainStepRightColumnBottom Title: displayAdminProductsMainStepRightColumnBottom hidden: true -hookTitle: Display new elements in back office product page, right column of the Basic settings tab +hookTitle: 'Display new elements in back office product page, right column of the Basic settings tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsMainStepRightColumnBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, right column of the Basic settings tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/essentials.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsMainStepRightColumnBottom', { 'id_product': productId }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md index 3ff1b71dd2..b07c717cdc 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsOptionsStepBottom Title: displayAdminProductsOptionsStepBottom hidden: true -hookTitle: Display new elements in back office product page, Options tab +hookTitle: 'Display new elements in back office product page, Options tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsOptionsStepBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, Options tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsOptionsStepBottom', { 'id_product': productId }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md index b2061c25e2..b286edb0f6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsOptionsStepTop Title: displayAdminProductsOptionsStepTop hidden: true -hookTitle: Display new elements in back office product page, Options tab +hookTitle: 'Display new elements in back office product page, Options tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsOptionsStepTop - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, Options tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/options.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsOptionsStepTop', { 'id_product': productId }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md index 86a7571b0c..9e99feee03 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsPriceStepBottom Title: displayAdminProductsPriceStepBottom hidden: true -hookTitle: Display new elements in back office product page, Price tab +hookTitle: 'Display new elements in back office product page, Price tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/pricing.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/pricing.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/pricing.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsPriceStepBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, Price tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/pricing.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/pricing.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsPriceStepBottom', { 'id_product': productId }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md index 3321b4fdee..ae06aa272c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md @@ -2,33 +2,25 @@ menuTitle: displayAdminProductsQuantitiesStepBottom Title: displayAdminProductsQuantitiesStepBottom hidden: true -hookTitle: Display new elements in back office product page, Quantities/Combinations tab +hookTitle: 'Display new elements in back office product page, Quantities/Combinations tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/combinations.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/combinations.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/combinations.html.twig locations: - - back office + - 'back office' type: display -hookAliases: +hookAliases: null hasExample: true ---- - -# Hook displayAdminProductsQuantitiesStepBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, Quantities/Combinations tab:** +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/combinations.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Panels/combinations.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -38,4 +30,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demovieworderhooks](https://github.com/PrestaShop/example-modules/tree/master/demovieworderhooks). diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md index f786e42b41..aaee195728 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsSeoStepBottom Title: displayAdminProductsSeoStepBottom hidden: true -hookTitle: Display new elements in back office product page, SEO tab +hookTitle: 'Display new elements in back office product page, SEO tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_seo.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_seo.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_seo.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsSeoStepBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, SEO tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_seo.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_seo.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsSeoStepBottom', { 'id_product': productId }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md index 92a0705476..74d9918337 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md @@ -2,35 +2,27 @@ menuTitle: displayAdminProductsShippingStepBottom Title: displayAdminProductsShippingStepBottom hidden: true -hookTitle: Display new elements in back office product page, Shipping tab +hookTitle: 'Display new elements in back office product page, Shipping tab' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_shipping.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_shipping.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_shipping.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminProductsShippingStepBottom - -## Information - -{{% notice tip %}} -**Display new elements in back office product page, Shipping tab:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office product page is displayed' -This hook launches modules when the back office product page is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_shipping.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Forms/form_shipping.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayAdminProductsShippingStepBottom', { 'id_product': id_product }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md index 073c6ff0fa..d988a7367d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md @@ -2,34 +2,28 @@ menuTitle: displayAdminStatsGraphEngine Title: displayAdminStatsGraphEngine hidden: true -hookTitle: +hookTitle: null files: - - classes/module/ModuleGraph.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGraph.php' + file: classes/module/ModuleGraph.php locations: - - back office -type: display + - 'back office' +type: display hookAliases: - - GraphEngine ---- - -# Hook displayAdminStatsGraphEngine - -## Information + - GraphEngine +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'Permits creating graph engines for the back office, you can refer to our [`GraphNvD3` implementation](https://github.com/PrestaShop/graphnvd3).' -{{% notice tip %}} -**Creates a rendering engine for graphs to be used in the back office** - -Permits creating graph engines for the back office, you can refer to our [`GraphNvD3` implementation](https://github.com/PrestaShop/graphnvd3). -{{% /notice %}} - -Hook locations: - - back office +--- -Located in: - - [classes/module/ModuleGraph.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGraph.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php return call_user_func([$render, 'hookGraphEngine'], $params, $drawer); -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md index ad192bad8e..7baad2294e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md @@ -2,26 +2,24 @@ menuTitle: displayAdminStatsGridEngine Title: displayAdminStatsGridEngine hidden: true -hookTitle: +hookTitle: null files: - - classes/module/ModuleGridEngine.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGridEngine.php' + file: classes/module/ModuleGridEngine.php locations: - - back office -type: display + - 'back office' +type: display hookAliases: - - GridEngine ---- - -# Hook displayAdminStatsGridEngine - -## Information + - GridEngine +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} - -{{% /notice %}} +--- -Hook locations: - - back office +{{% hookDescriptor %}} -Located in: - - [classes/module/ModuleGridEngine.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGridEngine.php) \ No newline at end of file +## Call of the Hook in the origin file diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md index ca1613f9d9..770e332d0e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md @@ -2,42 +2,28 @@ menuTitle: displayAdminStatsModules Title: displayAdminStatsModules hidden: true -hookTitle: Stats - Modules +hookTitle: 'Stats - Modules' files: - - controllers/admin/AdminStatsTabController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminStatsTabController.php' + file: controllers/admin/AdminStatsTabController.php locations: - - back office + - 'back office' type: display hookAliases: - - AdminStatsModules ---- - -# Hook displayAdminStatsModules - -## Aliases - - - AdminStatsModules - - - -## Information + - AdminStatsModules +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**Stats - Modules:** - - -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [controllers/admin/AdminStatsTabController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminStatsTabController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayAdminStatsModules', [], $module_instance->id) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md index 3eda114280..9ade9c0c2d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md @@ -2,32 +2,24 @@ menuTitle: displayAdminThemesListAfter Title: displayAdminThemesListAfter hidden: true -hookTitle: BO themes list extra content +hookTitle: 'BO themes list extra content' files: - - src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminThemesListAfter - -## Information - -{{% notice tip %}} -**BO themes list extra content:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays content after the themes list in the back office' -This hook displays content after the themes list in the back office -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Improve/Design/Theme/index.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -42,4 +34,4 @@ Located in: ```php {{ renderhook('displayAdminThemesListAfter', { 'current_theme_name': currentlyUsedTheme.get('name') }) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminView.md b/modules/concepts/hooks/list-of-hooks/displayAdminView.md index a6d896a787..3d0fb20030 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminView.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminView.md @@ -2,29 +2,27 @@ menuTitle: displayAdminView Title: displayAdminView hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/default/template/helpers/view/view.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/view/view.tpl' + file: admin-dev/themes/default/template/helpers/view/view.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayAdminView - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/default/template/helpers/view/view.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/view/view.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAdminView'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md index 1bf72600ff..40e9eb22ec 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md @@ -2,38 +2,27 @@ menuTitle: displayAfterBodyOpeningTag Title: displayAfterBodyOpeningTag hidden: true -hookTitle: Very top of pages +hookTitle: 'Very top of pages' files: - - Classic Theme: templates/layouts/layout-both-columns.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' + file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: - - front office + - 'front office' type: display origin: theme -hookAliases: ---- - -# Hook displayAfterBodyOpeningTag - -## Information - -{{% notice tip %}} -**Very top of pages:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +description: 'Use this hook for advertisement or modals you want to load first' -Use this hook for advertisement or modals you want to load first -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAfterBodyOpeningTag'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md b/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md index 9c7fd44c09..5a77f22061 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md @@ -2,35 +2,27 @@ menuTitle: displayAfterCarrier Title: displayAfterCarrier hidden: true -hookTitle: After carriers list +hookTitle: 'After carriers list' files: - - classes/checkout/CheckoutDeliveryStep.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php' + file: classes/checkout/CheckoutDeliveryStep.php locations: - - front office + - 'front office' type: display -hookAliases: ---- - -# Hook displayAfterCarrier - -## Information - -{{% notice tip %}} -**After carriers list:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed after the carrier list in Front Office' -This hook is displayed after the carrier list in Front Office -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/checkout/CheckoutDeliveryStep.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayAfterCarrier', ['cart' => $this->getCheckoutSession()->getCart()]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md index 56eeaf9869..3b42bd337d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md @@ -2,38 +2,27 @@ menuTitle: displayAfterProductThumbs Title: displayAfterProductThumbs hidden: true -hookTitle: Display extra content below product thumbs +hookTitle: 'Display extra content below product thumbs' files: - - Classic Theme: templates/catalog/_partials/product-cover-thumbnails.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-cover-thumbnails.tpl' + file: 'Classic Theme: templates/catalog/_partials/product-cover-thumbnails.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayAfterProductThumbs - -## Information - -{{% notice tip %}} -**Display extra content below product thumbs:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new elements below product images ex. additional media' -This hook displays new elements below product images ex. additional media -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/_partials/product-cover-thumbnails.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-cover-thumbnails.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAfterProductThumbs' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md index d290396335..011e9bc273 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md @@ -2,38 +2,27 @@ menuTitle: displayAfterTitleTag Title: displayAfterTitleTag hidden: true -hookTitle: After title tag +hookTitle: 'After title tag' files: - - Classic Theme: templates/_partials/head.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/head.tpl' + file: 'Classic Theme: templates/_partials/head.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayAfterTitleTag - -## Information - -{{% notice tip %}} -**After title tag:** +array_return: false +check_exceptions: false +chain: false +description: 'Use this hook to add content after title tag' -Use this hook to add content after title tag -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/_partials/head.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/head.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayAfterTitleTag'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md index 7571bb7b41..666dca982d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md @@ -2,34 +2,28 @@ menuTitle: displayAttributeForm Title: displayAttributeForm hidden: true -hookTitle: +hookTitle: null files: - - admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl' + file: admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl locations: - - back office -type: display + - 'back office' +type: display hookAliases: - - attributeForm ---- - -# Hook displayAttributeForm - -## Information + - attributeForm +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook adds fields to the form 'attribute value'" -{{% notice tip %}} -**Add fields to the form 'attribute value'** - -This hook adds fields to the form 'attribute value' -{{% /notice %}} - -Hook locations: - - back office +--- -Located in: - - [admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h="displayAttributeForm" id_attribute=$form_id} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md index e779841e2a..5b390f3faf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md @@ -2,35 +2,28 @@ menuTitle: displaybackOfficeCategory Title: displaybackOfficeCategory hidden: true -hookTitle: Display new elements in the Back Office, tab AdminCategories +hookTitle: 'Display new elements in the Back Office, tab AdminCategories' files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Categories/Blocks/form.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Categories/Blocks/form.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Categories/Blocks/form.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displaybackOfficeCategory - -## Information - -{{% notice tip %}} -**Display new elements in the Back Office, tab AdminCategories:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the AdminCategories tab is displayed in the Back Office' -This hook launches modules when the AdminCategories tab is displayed in the Back Office -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Categories/Blocks/form.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Categories/Blocks/form.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displaybackOfficeCategory') }} ``` + diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md index 0a9d0b5ab5..3f2cabe3a1 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md @@ -2,32 +2,24 @@ menuTitle: displaybackOfficeEmployeeMenu Title: displaybackOfficeEmployeeMenu hidden: true -hookTitle: Administration Employee menu +hookTitle: 'Administration Employee menu' files: - - src/PrestaShopBundle/Bridge/Smarty/HeaderConfigurator.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Smarty/HeaderConfigurator.php' + file: src/PrestaShopBundle/Bridge/Smarty/HeaderConfigurator.php locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displaybackOfficeEmployeeMenu - -## Information - -{{% notice tip %}} -**Administration Employee menu:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed in the employee menu' -This hook is displayed in the employee menu -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Bridge/Smarty/HeaderConfigurator.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Smarty/HeaderConfigurator.php) +{{% hookDescriptor %}} ## Parameters details @@ -48,3 +40,4 @@ dispatchWithParameters( ] ) ``` + diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md index 46b5d3f89c..6524c3ff04 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md @@ -2,42 +2,29 @@ menuTitle: displaybackOfficeHeader Title: displaybackOfficeHeader hidden: true -hookTitle: Administration panel header +hookTitle: 'Administration panel header' files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: display hookAliases: - - backOfficeHeader ---- - -# Hook displaybackOfficeHeader - -## Aliases - - - backOfficeHeader - - - -## Information + - backOfficeHeader +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed in the header of the admin panel' -{{% notice tip %}} -**Administration panel header:** - -This hook is displayed in the header of the admin panel -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displaybackOfficeHeader') ``` + diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md index af9a8d6cab..76fa2454e0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md @@ -2,42 +2,29 @@ menuTitle: displaybackOfficeTop Title: displaybackOfficeTop hidden: true -hookTitle: Administration panel hover the tabs +hookTitle: 'Administration panel hover the tabs' files: - - classes/controller/AdminController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' + file: classes/controller/AdminController.php locations: - - back office + - 'back office' type: display hookAliases: - - backOfficeTop ---- - -# Hook displaybackOfficeTop - -## Aliases - - - backOfficeTop - - - -## Information + - backOfficeTop +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed on the roll hover of the tabs within the admin panel' -{{% notice tip %}} -**Administration panel hover the tabs:** - -This hook is displayed on the roll hover of the tabs within the admin panel -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [classes/controller/AdminController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displaybackOfficeTop') ``` + diff --git a/modules/concepts/hooks/list-of-hooks/displayBanner.md b/modules/concepts/hooks/list-of-hooks/displayBanner.md index 149be22ba6..bede891a64 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBanner.md +++ b/modules/concepts/hooks/list-of-hooks/displayBanner.md @@ -2,38 +2,27 @@ menuTitle: displayBanner Title: displayBanner hidden: true -hookTitle: Very top of pages +hookTitle: 'Very top of pages' files: - - Classic Theme: templates/_partials/header.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/header.tpl' + file: 'Classic Theme: templates/_partials/header.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayBanner - -## Information - -{{% notice tip %}} -**Very top of pages:** +array_return: false +check_exceptions: false +chain: false +description: 'Use this hook for banners on top of every pages' -Use this hook for banners on top of every pages -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/header.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayBanner'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md index 09b1722feb..918e11a0b7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md @@ -2,38 +2,27 @@ menuTitle: displayBeforeBodyClosingTag Title: displayBeforeBodyClosingTag hidden: true -hookTitle: Very bottom of pages +hookTitle: 'Very bottom of pages' files: - - Classic Theme: templates/layouts/layout-both-columns.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' + file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayBeforeBodyClosingTag - -## Information - -{{% notice tip %}} -**Very bottom of pages:** +array_return: false +check_exceptions: false +chain: false +description: 'Use this hook for your modals or any content you want to load at the very end' -Use this hook for your modals or any content you want to load at the very end -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayBeforeBodyClosingTag'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md index cddaa85c68..d30e9385e5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md @@ -2,39 +2,25 @@ menuTitle: displayBeforeCarrier Title: displayBeforeCarrier hidden: true -hookTitle: Before carriers list +hookTitle: 'Before carriers list' files: - - classes/checkout/CheckoutDeliveryStep.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php' + file: classes/checkout/CheckoutDeliveryStep.php locations: - - front office + - 'front office' type: display hookAliases: - - beforeCarrier ---- - -# Hook displayBeforeCarrier - -## Aliases - - - beforeCarrier - - - -## Information + - beforeCarrier +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is displayed before the carrier list in Front Office' -{{% notice tip %}} -**Before carriers list:** - -This hook is displayed before the carrier list in Front Office -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/checkout/CheckoutDeliveryStep.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php) +{{% hookDescriptor %}} ## Parameters details @@ -87,4 +73,4 @@ Located in: ```php Hook::exec('displayBeforeCarrier', ['cart' => $this->getCheckoutSession()->getCart()]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md index b1338ff2b4..e3c8772bc7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md @@ -2,32 +2,27 @@ menuTitle: displayCMSDisputeInformation Title: displayCMSDisputeInformation hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/cms/page.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl' + file: 'Classic Theme: templates/cms/page.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCMSDisputeInformation - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/cms/page.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCMSDisputeInformation'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md index b3386ea325..abdb0c4a45 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md @@ -2,32 +2,27 @@ menuTitle: displayCMSPrintButton Title: displayCMSPrintButton hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/cms/page.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl' + file: 'Classic Theme: templates/cms/page.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCMSPrintButton - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/cms/page.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCMSPrintButton'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md b/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md index e2992e1989..1c41a4dbd2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md @@ -2,35 +2,27 @@ menuTitle: displayCarrierExtraContent Title: displayCarrierExtraContent hidden: true -hookTitle: Display additional content for a carrier (e.g pickup points) +hookTitle: 'Display additional content for a carrier (e.g pickup points)' files: - - classes/checkout/DeliveryOptionsFinder.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/DeliveryOptionsFinder.php' + file: classes/checkout/DeliveryOptionsFinder.php locations: - - front office + - 'front office' type: display -hookAliases: ---- - -# Hook displayCarrierExtraContent - -## Information - -{{% notice tip %}} -**Display additional content for a carrier (e.g pickup points):** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook calls only the module related to the carrier, in order to add options when needed' -This hook calls only the module related to the carrier, in order to add options when needed -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/checkout/DeliveryOptionsFinder.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/DeliveryOptionsFinder.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayCarrierExtraContent', ['carrier' => $carrier], $moduleId) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md index b809f20635..9c7fafa545 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md @@ -2,38 +2,27 @@ menuTitle: displayCartExtraProductActions Title: displayCartExtraProductActions hidden: true -hookTitle: Extra buttons in shopping cart +hookTitle: 'Extra buttons in shopping cart' files: - - Classic Theme: templates/checkout/_partials/cart-detailed-product-line.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-product-line.tpl' + file: 'Classic Theme: templates/checkout/_partials/cart-detailed-product-line.tpl' locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCartExtraProductActions - -## Information - -{{% notice tip %}} -**Extra buttons in shopping cart:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook adds extra buttons to the product lines, in the shopping cart' -This hook adds extra buttons to the product lines, in the shopping cart -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/cart-detailed-product-line.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-product-line.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCartExtraProductActions' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md index 8610e5162e..afeae0970a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md @@ -2,38 +2,27 @@ menuTitle: displayCartModalContent Title: displayCartModalContent hidden: true -hookTitle: Content of Add-to-cart modal +hookTitle: 'Content of Add-to-cart modal' files: - - Classic Theme: modules/ps_shoppingcart/modal.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl' + file: 'Classic Theme: modules/ps_shoppingcart/modal.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCartModalContent - -## Information - -{{% notice tip %}} -**Content of Add-to-cart modal:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays content in the middle of the window that appears after adding product to cart' -This hook displays content in the middle of the window that appears after adding product to cart -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: modules/ps_shoppingcart/modal.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCartModalContent' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md index 2b93462380..a59ebc917a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md @@ -2,38 +2,27 @@ menuTitle: displayCartModalFooter Title: displayCartModalFooter hidden: true -hookTitle: Bottom of Add-to-cart modal +hookTitle: 'Bottom of Add-to-cart modal' files: - - Classic Theme: modules/ps_shoppingcart/modal.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl' + file: 'Classic Theme: modules/ps_shoppingcart/modal.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCartModalFooter - -## Information - -{{% notice tip %}} -**Bottom of Add-to-cart modal:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays content in the bottom of window that appears after adding product to cart' -This hook displays content in the bottom of window that appears after adding product to cart -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: modules/ps_shoppingcart/modal.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCartModalFooter' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md index ff38bc368f..162f8cab45 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md @@ -2,38 +2,27 @@ menuTitle: displayCheckoutBeforeConfirmation Title: displayCheckoutBeforeConfirmation hidden: true -hookTitle: Show custom content before checkout confirmation +hookTitle: 'Show custom content before checkout confirmation' files: - - Classic Theme: templates/checkout/_partials/steps/payment.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl' + file: 'Classic Theme: templates/checkout/_partials/steps/payment.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCheckoutBeforeConfirmation - -## Information - -{{% notice tip %}} -**Show custom content before checkout confirmation:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook allows you to display custom content at the end of checkout process' -This hook allows you to display custom content at the end of checkout process -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/steps/payment.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCheckoutBeforeConfirmation'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md index d1e060d76c..11e1097dc5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md @@ -2,32 +2,27 @@ menuTitle: displayCheckoutSubtotalDetails Title: displayCheckoutSubtotalDetails hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/_partials/cart-detailed-totals.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-totals.tpl' + file: 'Classic Theme: templates/checkout/_partials/cart-detailed-totals.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCheckoutSubtotalDetails - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/cart-detailed-totals.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-totals.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCheckoutSubtotalDetails' subtotal=$subtotal} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md index 61e227388f..fa8a514cbb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md @@ -2,38 +2,27 @@ menuTitle: displayCheckoutSummaryTop Title: displayCheckoutSummaryTop hidden: true -hookTitle: Cart summary top +hookTitle: 'Cart summary top' files: - - Classic Theme: templates/checkout/_partials/cart-summary-top.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-summary-top.tpl' + file: 'Classic Theme: templates/checkout/_partials/cart-summary-top.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCheckoutSummaryTop - -## Information - -{{% notice tip %}} -**Cart summary top:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook allows you to display new elements in top of cart summary' -This hook allows you to display new elements in top of cart summary -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/cart-summary-top.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-summary-top.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCheckoutSummaryTop'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayContactContent.md b/modules/concepts/hooks/list-of-hooks/displayContactContent.md index f74db26986..94b2c60080 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactContent.md @@ -2,41 +2,30 @@ menuTitle: displayContactContent Title: displayContactContent hidden: true -hookTitle: Content wrapper section of the contact page +hookTitle: 'Content wrapper section of the contact page' files: - - Hummingbird Theme: templates/contact.tpl - - Classic Theme: templates/contact.tpl + - + url: 'https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl' + file: 'Hummingbird Theme: templates/contact.tpl' + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl' + file: 'Classic Theme: templates/contact.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayContactContent {{< minver v="8.1" >}} - -## Information - -{{% notice tip %}} -**Content wrapper section of the contact page:** +array_return: false +check_exceptions: false +chain: false +description: "This hook displays new elements in the content wrapper of the contact page.\nThis replaces widget `contactform`." -This hook displays new elements in the content wrapper of the contact page. -This replaces widget `contactform`. -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Hummingbird Theme: templates/contact.tpl](https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl) - - [Classic Theme: templates/contact.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayContactContent'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md index fba6ab4b10..c7f8c8e25b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md @@ -2,41 +2,30 @@ menuTitle: displayContactLeftColumn Title: displayContactLeftColumn hidden: true -hookTitle: Left column blocks on the contact page +hookTitle: 'Left column blocks on the contact page' files: - - Hummingbird Theme: templates/contact.tpl - - Classic Theme: templates/contact.tpl + - + url: 'https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl' + file: 'Hummingbird Theme: templates/contact.tpl' + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl' + file: 'Classic Theme: templates/contact.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayContactLeftColumn {{< minver v="8.1" >}} - -## Information - -{{% notice tip %}} -**Left column blocks on the contact page:** +array_return: false +check_exceptions: false +chain: false +description: "This hook displays new elements in the left-hand column of the contact page.\nThis replaces widget `ps_contactinfo` on hook `displayLeftColumn`." -This hook displays new elements in the left-hand column of the contact page. -This replaces widget `ps_contactinfo` on hook `displayLeftColumn`. -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Hummingbird Theme: templates/contact.tpl](https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl) - - [Classic Theme: templates/contact.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayContactLeftColumn'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md index 8873714012..776aaef193 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md @@ -2,41 +2,30 @@ menuTitle: displayContactRightColumn Title: displayContactRightColumn hidden: true -hookTitle: Right column blocks of the contact page +hookTitle: 'Right column blocks of the contact page' files: - - Hummingbird Theme: templates/contact.tpl - - Classic Theme: templates/contact.tpl + - + url: 'https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl' + file: 'Hummingbird Theme: templates/contact.tpl' + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl' + file: 'Classic Theme: templates/contact.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayContactRightColumn {{< minver v="8.1" >}} - -## Information - -{{% notice tip %}} -**Right column blocks of the contact page:** +array_return: false +check_exceptions: false +chain: false +description: "This hook displays new elements in the right-hand column of the contact page.\nThis replaces widget `ps_contactinfo` on hook `displayRightColumn`." -This hook displays new elements in the right-hand column of the contact page. -This replaces widget `ps_contactinfo` on hook `displayRightColumn`. -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Hummingbird Theme: templates/contact.tpl](https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl) - - [Classic Theme: templates/contact.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayContactRightColumn'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md index 3b496c2cc9..64058857f8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md @@ -2,32 +2,27 @@ menuTitle: displayCrossSellingShoppingCart Title: displayCrossSellingShoppingCart hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/cart.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl' + file: 'Classic Theme: templates/checkout/cart.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCrossSellingShoppingCart - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCrossSellingShoppingCart'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md index a36aee254d..b0a18fff95 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md @@ -2,45 +2,28 @@ menuTitle: displayCustomerAccount Title: displayCustomerAccount hidden: true -hookTitle: Customer account displayed in Front Office +hookTitle: 'Customer account displayed in Front Office' files: - - Classic Theme: templates/customer/my-account.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/my-account.tpl' + file: 'Classic Theme: templates/customer/my-account.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - customerAccount + - customerAccount origin: theme ---- - -# Hook displayCustomerAccount - -## Aliases - - - customerAccount - - - -## Information +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new elements on the customer account page' -{{% notice tip %}} -**Customer account displayed in Front Office:** - -This hook displays new elements on the customer account page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/customer/my-account.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/my-account.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCustomerAccount'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md index b0e22a0125..4bb3f2a1d9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md @@ -2,42 +2,28 @@ menuTitle: displayCustomerAccountForm Title: displayCustomerAccountForm hidden: true -hookTitle: Customer account creation form +hookTitle: 'Customer account creation form' files: - - classes/form/CustomerForm.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerForm.php' + file: classes/form/CustomerForm.php locations: - - front office + - 'front office' type: display hookAliases: - - createAccountForm ---- - -# Hook displayCustomerAccountForm - -## Aliases - - - createAccountForm - - + - createAccountForm +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays some information on the form to create a customer account' -## Information - -{{% notice tip %}} -**Customer account creation form:** - -This hook displays some information on the form to create a customer account -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/form/CustomerForm.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerForm.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayCustomerAccountForm') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md index ecda5f4a7d..f6b27e5d6c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md @@ -2,42 +2,28 @@ menuTitle: displayCustomerAccountFormTop Title: displayCustomerAccountFormTop hidden: true -hookTitle: Block above the form for create an account +hookTitle: 'Block above the form for create an account' files: - - controllers/front/RegistrationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/RegistrationController.php' + file: controllers/front/RegistrationController.php locations: - - front office + - 'front office' type: display hookAliases: - - createAccountTop ---- - -# Hook displayCustomerAccountFormTop - -## Aliases - - - createAccountTop - - + - createAccountTop +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is displayed above the customer's account creation form" -## Information - -{{% notice tip %}} -**Block above the form for create an account:** - -This hook is displayed above the customer's account creation form -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [controllers/front/RegistrationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/RegistrationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayCustomerAccountFormTop') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md index 8880c91e44..d5b58d4ff0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md @@ -2,38 +2,27 @@ menuTitle: displayCustomerLoginFormAfter Title: displayCustomerLoginFormAfter hidden: true -hookTitle: Display elements after login form +hookTitle: 'Display elements after login form' files: - - Classic Theme: templates/customer/authentication.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/authentication.tpl' + file: 'Classic Theme: templates/customer/authentication.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayCustomerLoginFormAfter - -## Information - -{{% notice tip %}} -**Display elements after login form:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new elements after the login form' -This hook displays new elements after the login form -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/customer/authentication.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/authentication.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayCustomerLoginFormAfter'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomization.md b/modules/concepts/hooks/list-of-hooks/displayCustomization.md index 1c29cd9ffb..6f67e83fb3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomization.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomization.md @@ -2,29 +2,27 @@ menuTitle: displayCustomization Title: displayCustomization hidden: true -hookTitle: +hookTitle: null files: - - classes/Product.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' + file: classes/Product.php locations: - - front office + - 'front office' type: display -hookAliases: ---- - -# Hook displayCustomization - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/Product.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayCustomization', ['customization' => $row], (int) $row['id_module']) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md index 86c88c8fa5..2242c19c12 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md @@ -2,35 +2,27 @@ menuTitle: displayDashboardToolbarIcons Title: displayDashboardToolbarIcons hidden: true -hookTitle: Display new elements in back office page with dashboard, on icons list +hookTitle: 'Display new elements in back office page with dashboard, on icons list' files: - - src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Blocks/tools.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Blocks/tools.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Blocks/tools.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayDashboardToolbarIcons - -## Information - -{{% notice tip %}} -**Display new elements in back office page with dashboard, on icons list:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when the back office with dashboard is displayed' -This hook launches modules when the back office with dashboard is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Blocks/tools.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Blocks/tools.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayDashboardToolbarIcons', {}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md index 86d03a1421..eee29529b5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md @@ -2,35 +2,27 @@ menuTitle: displayDashboardToolbarTopMenu Title: displayDashboardToolbarTopMenu hidden: true -hookTitle: Display new elements in back office page with a dashboard, on top Menu +hookTitle: 'Display new elements in back office page with a dashboard, on top Menu' files: - - admin-dev/themes/new-theme/template/page_header_toolbar.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/page_header_toolbar.tpl' + file: admin-dev/themes/new-theme/template/page_header_toolbar.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayDashboardToolbarTopMenu - -## Information - -{{% notice tip %}} -**Display new elements in back office page with a dashboard, on top Menu:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook launches modules when a page with a dashboard is displayed' -This hook launches modules when a page with a dashboard is displayed -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/new-theme/template/page_header_toolbar.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/page_header_toolbar.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayDashboardToolbarTopMenu'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md b/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md index 00a3290e20..eae634ea07 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md @@ -2,35 +2,27 @@ menuTitle: displayDashboardTop Title: displayDashboardTop hidden: true -hookTitle: Dashboard Top +hookTitle: 'Dashboard Top' files: - - admin-dev/themes/new-theme/template/page_header_toolbar.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/page_header_toolbar.tpl' + file: admin-dev/themes/new-theme/template/page_header_toolbar.tpl locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayDashboardTop - -## Information - -{{% notice tip %}} -**Dashboard Top:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: "Displays the content in the dashboard's top area" -Displays the content in the dashboard's top area -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/new-theme/template/page_header_toolbar.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/page_header_toolbar.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayDashboardTop'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md b/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md index d6011da421..c6b498a37d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md +++ b/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md @@ -2,32 +2,24 @@ menuTitle: displayEmptyModuleCategoryExtraMessage Title: displayEmptyModuleCategoryExtraMessage hidden: true -hookTitle: Extra message to display for an empty modules category +hookTitle: 'Extra message to display for an empty modules category' files: - - src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_manage_empty.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_manage_empty.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_manage_empty.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayEmptyModuleCategoryExtraMessage - -## Information - -{{% notice tip %}} -**Extra message to display for an empty modules category:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook allows to add an extra message to display in the Module manager page when a category doesn't have any module" -This hook allows to add an extra message to display in the Module manager page when a category doesn't have any module -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_manage_empty.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Module/Includes/grid_manage_empty.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -41,4 +33,4 @@ Located in: ```php {{ renderhook('displayEmptyModuleCategoryExtraMessage', {'category_name': category.name}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md index 87631d6294..bdae2105e4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md +++ b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md @@ -2,32 +2,27 @@ menuTitle: displayExpressCheckout Title: displayExpressCheckout hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/_partials/cart-detailed-actions.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-actions.tpl' + file: 'Classic Theme: templates/checkout/_partials/cart-detailed-actions.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayExpressCheckout - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/cart-detailed-actions.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-actions.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayExpressCheckout'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md index bd6eff4245..6f49dbedcd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md @@ -2,42 +2,28 @@ menuTitle: displayFeatureForm Title: displayFeatureForm hidden: true -hookTitle: Add fields to the form 'feature' +hookTitle: "Add fields to the form 'feature'" files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Features/Blocks/form.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Features/Blocks/form.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Features/Blocks/form.html.twig locations: - - back office + - 'back office' type: display hookAliases: - - featureForm ---- - -# Hook displayFeatureForm - -## Aliases - - - featureForm - - + - featureForm +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook adds fields to the form 'feature'" -## Information - -{{% notice tip %}} -**Add fields to the form 'feature':** - -This hook adds fields to the form 'feature' -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Features/Blocks/form.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Features/Blocks/form.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('displayFeatureForm', {'id_feature': featureId}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md index cf4ab5c58e..297e0c2595 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md @@ -2,39 +2,25 @@ menuTitle: displayFeaturePostProcess Title: displayFeaturePostProcess hidden: true -hookTitle: On post-process in admin feature +hookTitle: 'On post-process in admin feature' files: - - controllers/admin/AdminFeaturesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminFeaturesController.php' + file: controllers/admin/AdminFeaturesController.php locations: - - back office + - 'back office' type: display hookAliases: - - postProcessFeature ---- - -# Hook displayFeaturePostProcess - -## Aliases - - - postProcessFeature - - + - postProcessFeature +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on post-process in admin feature' -## Information - -{{% notice tip %}} -**On post-process in admin feature:** - -This hook is called on post-process in admin feature -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [controllers/admin/AdminFeaturesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminFeaturesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -43,4 +29,4 @@ Hook::exec( 'displayFeaturePostProcess', ['errors' => &$this->errors] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md b/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md index 4d1a6edbd9..67cb3e1fa6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md @@ -2,41 +2,28 @@ menuTitle: displayFeatureValueForm Title: displayFeatureValueForm hidden: true -hookTitle: Add fields to the form 'feature value' +hookTitle: "Add fields to the form 'feature value'" files: - - admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl' + file: admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl locations: - - back office + - 'back office' type: display hookAliases: - - featureValueForm ---- - -# Hook displayFeatureValueForm - -## Aliases - - - featureValueForm - - -## Information + - featureValueForm +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook adds fields to the form 'feature value'" -{{% notice tip %}} -**Add fields to the form 'feature value':** - -This hook adds fields to the form 'feature value' -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/controllers/feature_value/helpers/form/form.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h="displayFeatureValueForm" id_feature_value=$feature_value->id|intval} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md index 9fee450b39..a85b132e89 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md @@ -2,39 +2,25 @@ menuTitle: displayFeatureValuePostProcess Title: displayFeatureValuePostProcess hidden: true -hookTitle: On post-process in admin feature value +hookTitle: 'On post-process in admin feature value' files: - - controllers/admin/AdminFeaturesController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminFeaturesController.php' + file: controllers/admin/AdminFeaturesController.php locations: - - back office + - 'back office' type: display hookAliases: - - postProcessFeatureValue ---- - -# Hook displayFeatureValuePostProcess - -## Aliases - - - postProcessFeatureValue - - + - postProcessFeatureValue +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called on post-process in admin feature value' -## Information - -{{% notice tip %}} -**On post-process in admin feature value:** - -This hook is called on post-process in admin feature value -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [controllers/admin/AdminFeaturesController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminFeaturesController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -43,4 +29,4 @@ Hook::exec( 'displayFeatureValuePostProcess', ['errors' => &$this->errors] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFooter.md b/modules/concepts/hooks/list-of-hooks/displayFooter.md index 997319d976..3c9aa84e6f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooter.md @@ -4,41 +4,26 @@ Title: displayFooter hidden: true hookTitle: Footer files: - - Classic Theme: templates/_partials/footer.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl' + file: 'Classic Theme: templates/_partials/footer.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - footer + - footer origin: theme ---- - -# Hook displayFooter - -## Aliases - - - footer - -## Information - -{{% notice tip %}} -**Footer:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new blocks in the footer' -This hook displays new blocks in the footer -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/_partials/footer.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayFooter'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md index 44e4e2b10b..675b02f6fc 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md @@ -2,32 +2,27 @@ menuTitle: displayFooterAfter Title: displayFooterAfter hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/_partials/footer.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl' + file: 'Classic Theme: templates/_partials/footer.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayFooterAfter - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/_partials/footer.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayFooterAfter'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md index c8e61faa44..5688ed3dff 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md @@ -2,30 +2,25 @@ menuTitle: displayFooterBefore Title: displayFooterBefore hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/_partials/footer.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl' + file: 'Classic Theme: templates/_partials/footer.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null hasExample: true origin: theme ---- - -# Hook displayFooterBefore - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/_partials/footer.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -35,4 +30,4 @@ Located in: ## Example implementation -This hook has been implemented as an example in our [modules examples repository - demomultistoreform](https://github.com/PrestaShop/example-modules/tree/master/demomultistoreform). \ No newline at end of file +This hook has been implemented as an example in our [modules examples repository - demomultistoreform](https://github.com/PrestaShop/example-modules/tree/master/demomultistoreform). diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md index 5351ff9bc4..39243afc38 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md @@ -2,37 +2,26 @@ menuTitle: displayFooterCategory Title: displayFooterCategory hidden: true -hookTitle: This hook adds new blocks under the products listing in a category/search +hookTitle: 'This hook adds new blocks under the products listing in a category/search' files: - - Classic Theme: templates/catalog/listing/product-list.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl' + file: 'Classic Theme: templates/catalog/listing/product-list.tpl' locations: - - front office + - 'front office' type: display origin: theme ---- - -# Hook displayFooterCategory - -## Information - -{{% notice tip %}} -**Category / search footer:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook adds new blocks under the products listing in a category/search' -This hook adds new blocks under the products listing in a category/search -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/listing/product-list.tpl](https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h="displayFooterCategory"} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md index a2333d87fd..6f10862e63 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md @@ -2,43 +2,28 @@ menuTitle: displayFooterProduct Title: displayFooterProduct hidden: true -hookTitle: Product footer +hookTitle: 'Product footer' files: - - Classic Theme: templates/catalog/product.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/product.tpl' + file: 'Classic Theme: templates/catalog/product.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - productfooter + - productfooter origin: theme ---- - -# Hook displayFooterProduct - -## Aliases - - - productfooter - -## Information - -{{% notice tip %}} -**Product footer:** +array_return: false +check_exceptions: false +chain: false +description: "This hook adds new blocks under the product's description" -This hook adds new blocks under the product's description -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/product.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/product.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayFooterProduct' product=$product category=$category} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md index 322a18b9c2..5900d5df7d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md +++ b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md @@ -2,32 +2,27 @@ menuTitle: displayGDPRConsent Title: displayGDPRConsent hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' + file: 'Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayGDPRConsent - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayGDPRConsent' id_module=$id_module} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayHeader.md b/modules/concepts/hooks/list-of-hooks/displayHeader.md index f3e7fa78c3..e0f43adf80 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeader.md @@ -2,42 +2,28 @@ menuTitle: displayHeader Title: displayHeader hidden: true -hookTitle: Pages html head section +hookTitle: 'Pages html head section' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: display hookAliases: - - Header ---- - -# Hook displayHeader - -## Aliases - - - Header - - + - Header +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook adds additional elements in the head section of your pages (head section of html)' -## Information - -{{% notice tip %}} -**Pages html head section:** - -This hook adds additional elements in the head section of your pages (head section of html) -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayHeader') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md index b7f16550b0..1b90c11db3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md @@ -2,37 +2,26 @@ menuTitle: displayHeaderCategory Title: displayHeaderCategory hidden: true -hookTitle: Footer above of the product list +hookTitle: 'Footer above of the product list' files: - - Classic Theme: templates/catalog/listing/product-list.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl' + file: 'Classic Theme: templates/catalog/listing/product-list.tpl' locations: - - front office + - 'front office' type: display origin: theme ---- - -# Hook displayHeaderCategory - -## Information - -{{% notice tip %}} -**Category / search header:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook adds new blocks above the products listing in a category/search' -This hook adds new blocks above the products listing in a category/search -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/listing/product-list.tpl](https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h="displayHeaderCategory"} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayHome.md b/modules/concepts/hooks/list-of-hooks/displayHome.md index 00e0185a60..3da5c00325 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHome.md +++ b/modules/concepts/hooks/list-of-hooks/displayHome.md @@ -2,42 +2,28 @@ menuTitle: displayHome Title: displayHome hidden: true -hookTitle: Homepage content +hookTitle: 'Homepage content' files: - - controllers/front/IndexController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/IndexController.php' + file: controllers/front/IndexController.php locations: - - front office + - 'front office' type: display hookAliases: - - home ---- - -# Hook displayHome - -## Aliases - - - home - - + - home +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays new elements on the homepage' -## Information - -{{% notice tip %}} -**Homepage content:** - -This hook displays new elements on the homepage -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [controllers/front/IndexController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/IndexController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayHome') -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md b/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md index 61cdbf0e41..446253b8b2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md +++ b/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md @@ -2,35 +2,27 @@ menuTitle: displayInvoiceLegalFreeText Title: displayInvoiceLegalFreeText hidden: true -hookTitle: PDF Invoice - Legal Free Text +hookTitle: 'PDF Invoice - Legal Free Text' files: - - classes/pdf/HTMLTemplateInvoice.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/pdf/HTMLTemplateInvoice.php' + file: classes/pdf/HTMLTemplateInvoice.php locations: - - front office + - 'front office' type: display -hookAliases: ---- - -# Hook displayInvoiceLegalFreeText - -## Information - -{{% notice tip %}} -**PDF Invoice - Legal Free Text:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook allows you to modify the legal free text on PDF invoices' -This hook allows you to modify the legal free text on PDF invoices -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/pdf/HTMLTemplateInvoice.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/pdf/HTMLTemplateInvoice.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayInvoiceLegalFreeText', ['order' => $this->order]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md index 2237d9d1d4..c85939c25a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md @@ -2,47 +2,28 @@ menuTitle: displayLeftColumn Title: displayLeftColumn hidden: true -hookTitle: New elements on a page (left column) +hookTitle: 'New elements on a page (left column)' files: - - Classic Theme: templates/layouts/layout-both-columns.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' + file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - extraLeft + - extraLeft origin: theme ---- - -# Hook displayLeftColumn - -## Aliases - - - extraLeft - -## Information - -{{% notice tip %}} -**New elements on a page (left column):** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new elements in the left-hand column of a page' -This hook displays new elements in the left-hand column of a page -{{% /notice %}} - -{{% notice note %}} -When located on a product page, the hook is [`displayLeftColumnProduct`]({{< relref "/8/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct">}}) -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayLeftColumn'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md index df653e43f2..4049f564da 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md @@ -2,43 +2,28 @@ menuTitle: displayLeftColumnProduct Title: displayLeftColumnProduct hidden: true -hookTitle: New elements on the product page (left column) +hookTitle: 'New elements on the product page (left column)' files: - - Classic Theme: templates/layouts/layout-both-columns.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' + file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - extraLeft + - extraLeft origin: theme ---- - -# Hook displayLeftColumnProduct - -## Aliases - - - extraLeft - -## Information - -{{% notice tip %}} -**New elements on the product page (left column):** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new elements in the left-hand column of the product page' -This hook displays new elements in the left-hand column of the product page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayLeftColumnProduct' product=$product category=$category} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayMaintenance.md b/modules/concepts/hooks/list-of-hooks/displayMaintenance.md index 37d5cd7f04..0826443e0d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMaintenance.md +++ b/modules/concepts/hooks/list-of-hooks/displayMaintenance.md @@ -2,35 +2,27 @@ menuTitle: displayMaintenance Title: displayMaintenance hidden: true -hookTitle: Maintenance Page +hookTitle: 'Maintenance Page' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: display -hookAliases: ---- - -# Hook displayMaintenance - -## Information - -{{% notice tip %}} -**Maintenance Page:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook displays new elements on the maintenance page' -This hook displays new elements on the maintenance page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayMaintenance', []) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md b/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md index f943ea9ebe..64e9562ea4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md +++ b/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md @@ -2,34 +2,26 @@ menuTitle: displayModuleConfigureExtraButons Title: displayModuleConfigureExtraButons hidden: true -hookTitle: Module configuration - After toolbar buttons +hookTitle: 'Module configuration - After toolbar buttons' files: - - admin-dev/themes/default/template/controllers/modules/configure.tpl + - + url: 'https://github.com/PrestaShop/Prestashop/blob/8.0.x/admin-dev/themes/default/template/controllers/modules/configure.tpl' + file: admin-dev/themes/default/template/controllers/modules/configure.tpl locations: - - back office + - 'back office' type: display ---- - -# Hook displayModuleConfigureExtraButons - -## Information - -{{% notice tip %}} -**Module configuration - After toolbar buttons** +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook allows to add toolbar's additional content on module configuration page" -This hook allows to add toolbar's additional content on module configuration page -{{% /notice %}} - -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [admin-dev/themes/default/template/controllers/modules/configure.tpl](https://github.com/PrestaShop/Prestashop/blob/8.0.x/admin-dev/themes/default/template/controllers/modules/configure.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h="displayModuleConfigureExtraButtons" module_name=$module_name} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md index d706de1b7b..988979e78b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md @@ -2,39 +2,25 @@ menuTitle: displayMyAccountBlock Title: displayMyAccountBlock hidden: true -hookTitle: My account block -files: - - Classic Theme: modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl +hookTitle: 'My account block' +files: { } locations: - - front office + - 'front office' type: display hookAliases: - - myAccountBlock + - myAccountBlock origin: theme ---- - -# Hook displayMyAccountBlock - -## Information +description: '' +array_return: false +check_exceptions: false +chain: false -{{% notice tip %}} -**My account block:** - -This hook displays extra information within the 'my account' block" -{{% /notice %}} - -| Hook | displayMyAccountBlock | -| --- | --- | -| Locations | front office | -| Type | display | -| Origin | theme | -| Aliases | myAccountBlock | +--- -Located in: - - [Classic Theme: modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_customeraccountlinks/ps_customeraccountlinks.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayMyAccountBlock'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayNav1.md b/modules/concepts/hooks/list-of-hooks/displayNav1.md index 5c1ce4b2d4..1c0163ff88 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav1.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav1.md @@ -2,32 +2,27 @@ menuTitle: displayNav1 Title: displayNav1 hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/_partials/header.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' + file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayNav1 - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayNav1'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayNav2.md b/modules/concepts/hooks/list-of-hooks/displayNav2.md index 35345399f5..e28879a267 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav2.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav2.md @@ -2,32 +2,27 @@ menuTitle: displayNav2 Title: displayNav2 hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/_partials/header.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' + file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayNav2 - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayNav2'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md index 0552845359..2c54a84830 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md +++ b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md @@ -4,36 +4,25 @@ Title: displayNavFullWidth hidden: true hookTitle: Navigation files: - - Classic Theme: templates/checkout/_partials/header.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' + file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayNavFullWidth - -## Information - -{{% notice tip %}} -**Navigation:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays full width navigation menu at the top of your pages' -This hook displays full width navigation menu at the top of your pages -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayNavFullWidth'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md index 6f42de8bc5..dc63fab665 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md +++ b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md @@ -2,32 +2,27 @@ menuTitle: displayNewsletterRegistration Title: displayNewsletterRegistration hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' + file: 'Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayNewsletterRegistration - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayNewsletterRegistration'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayNotFound.md b/modules/concepts/hooks/list-of-hooks/displayNotFound.md index 35deb02ddf..334ef2c039 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNotFound.md +++ b/modules/concepts/hooks/list-of-hooks/displayNotFound.md @@ -2,32 +2,27 @@ menuTitle: displayNotFound Title: displayNotFound hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/errors/not-found.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl' + file: 'Classic Theme: templates/errors/not-found.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayNotFound - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/errors/not-found.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayNotFound'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md index e548c18031..c2389959bd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md @@ -2,39 +2,25 @@ menuTitle: displayOrderConfirmation Title: displayOrderConfirmation hidden: true -hookTitle: Order confirmation page +hookTitle: 'Order confirmation page' files: - - controllers/front/OrderConfirmationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderConfirmationController.php' + file: controllers/front/OrderConfirmationController.php locations: - - front office + - 'front office' type: display hookAliases: - - orderConfirmation ---- - -# Hook displayOrderConfirmation - -## Aliases - - - orderConfirmation - - - -## Information + - orderConfirmation +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is called within an order's confirmation page" -{{% notice tip %}} -**Order confirmation page:** - -This hook is called within an order's confirmation page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [controllers/front/OrderConfirmationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderConfirmationController.php) +{{% hookDescriptor %}} ## Parameters details @@ -49,4 +35,4 @@ Located in: ```php Hook::exec('displayOrderConfirmation', ['order' => $order]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md index 879f27ecba..f8585a3a94 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md @@ -2,32 +2,27 @@ menuTitle: displayOrderConfirmation1 Title: displayOrderConfirmation1 hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/order-confirmation.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl' + file: 'Classic Theme: templates/checkout/order-confirmation.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayOrderConfirmation1 - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/order-confirmation.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayOrderConfirmation1'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md index fc6c1c8cf3..a4e1c7a9af 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md @@ -2,32 +2,27 @@ menuTitle: displayOrderConfirmation2 Title: displayOrderConfirmation2 hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/order-confirmation.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl' + file: 'Classic Theme: templates/checkout/order-confirmation.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayOrderConfirmation2 - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/order-confirmation.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayOrderConfirmation2'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md index 0546b3d882..2de498edc3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md @@ -2,39 +2,25 @@ menuTitle: displayOrderDetail Title: displayOrderDetail hidden: true -hookTitle: Order detail +hookTitle: 'Order detail' files: - - controllers/front/OrderDetailController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderDetailController.php' + file: controllers/front/OrderDetailController.php locations: - - front office + - 'front office' type: display hookAliases: - - orderDetailDisplayed ---- - -# Hook displayOrderDetail - -## Aliases - - - orderDetailDisplayed - - - -## Information + - orderDetailDisplayed +array_return: false +check_exceptions: false +chain: false +origin: core +description: "This hook is displayed within the order's details in Front Office" -{{% notice tip %}} -**Order detail:** - -This hook is displayed within the order's details in Front Office -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [controllers/front/OrderDetailController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderDetailController.php) +{{% hookDescriptor %}} ## Parameters details @@ -49,4 +35,4 @@ Located in: ```php Hook::exec('displayOrderDetail', ['order' => $order]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md b/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md index 6d615fe4d4..2b805825e5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md @@ -2,26 +2,24 @@ menuTitle: displayOrderPreview Title: displayOrderPreview hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/preview.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/preview.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/preview.html.twig locations: - - back office + - 'back office' type: display -hookAliases: ---- - -# Hook displayOrderPreview - -## Information +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - back office - -Hook type: display +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/preview.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/preview.html.twig) +{{% hookDescriptor %}} ## Parameters details @@ -36,4 +34,4 @@ Located in: ```php {{ renderhook('displayOrderPreview', {'order_id': orderId}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md b/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md index 0d12d73ddd..3e1ad876b3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md +++ b/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md @@ -2,31 +2,24 @@ menuTitle: displayOverrideTemplate Title: displayOverrideTemplate hidden: true -hookTitle: Change the default template of current controller +hookTitle: 'Change the default template of current controller' files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office + - 'front office' type: display -hookAliases: ---- - -# Hook displayOverrideTemplate - -## Information - -{{% notice tip %}} -**Change the default template of current controller:** +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -57,4 +50,4 @@ Hook::exec( 'locale' => $locale, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md index ce87d2fa0e..6383438847 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md @@ -2,38 +2,27 @@ menuTitle: displayPaymentByBinaries Title: displayPaymentByBinaries hidden: true -hookTitle: Payment form generated by binaries +hookTitle: 'Payment form generated by binaries' files: - - Classic Theme: templates/checkout/_partials/steps/payment.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl' + file: 'Classic Theme: templates/checkout/_partials/steps/payment.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayPaymentByBinaries - -## Information - -{{% notice tip %}} -**Payment form generated by binaries:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays form generated by binaries during the checkout' -This hook displays form generated by binaries during the checkout -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/steps/payment.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayPaymentByBinaries'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md index 5a982f2388..d5cba67110 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md @@ -2,42 +2,28 @@ menuTitle: displayPaymentReturn Title: displayPaymentReturn hidden: true -hookTitle: Payment return +hookTitle: 'Payment return' files: - - controllers/front/OrderConfirmationController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderConfirmationController.php' + file: controllers/front/OrderConfirmationController.php locations: - - front office + - 'front office' type: display hookAliases: - - paymentReturn ---- - -# Hook displayPaymentReturn - -## Aliases - - - paymentReturn - - - -## Information + - paymentReturn +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -{{% notice tip %}} -**Payment return:** - - -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display +--- -Located in: - - [controllers/front/OrderConfirmationController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/OrderConfirmationController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('displayPaymentReturn', ['order' => $order], $this->id_module) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md index c13be52f99..30ad44d5c6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md @@ -2,43 +2,28 @@ menuTitle: displayPaymentTop Title: displayPaymentTop hidden: true -hookTitle: Top of payment page +hookTitle: 'Top of payment page' files: - - Classic Theme: templates/checkout/_partials/steps/payment.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl' + file: 'Classic Theme: templates/checkout/_partials/steps/payment.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - paymentTop + - paymentTop origin: theme ---- - -# Hook displayPaymentTop - -## Aliases - - - paymentTop - -## Information - -{{% notice tip %}} -**Top of payment page:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook is displayed at the top of the payment page' -This hook is displayed at the top of the payment page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/steps/payment.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayPaymentTop'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md index 8199e8a4b5..4ff1fdb0c8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md @@ -2,38 +2,27 @@ menuTitle: displayPersonalInformationTop Title: displayPersonalInformationTop hidden: true -hookTitle: Content in the checkout funnel, on top of the personal information panel +hookTitle: 'Content in the checkout funnel, on top of the personal information panel' files: - - Classic Theme: templates/checkout/_partials/steps/personal-information.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/personal-information.tpl' + file: 'Classic Theme: templates/checkout/_partials/steps/personal-information.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayPersonalInformationTop - -## Information - -{{% notice tip %}} -**Content in the checkout funnel, on top of the personal information panel:** +array_return: false +check_exceptions: false +chain: false +description: 'Display actions or additional content in the personal details tab of the checkout funnel.' -Display actions or additional content in the personal details tab of the checkout funnel. -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/steps/personal-information.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/personal-information.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayPersonalInformationTop' customer=$customer} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayProductActions.md b/modules/concepts/hooks/list-of-hooks/displayProductActions.md index 762c2553f4..f2a844f67f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductActions.md @@ -2,38 +2,27 @@ menuTitle: displayProductActions Title: displayProductActions hidden: true -hookTitle: Display additional action button on the product page +hookTitle: 'Display additional action button on the product page' files: - - Classic Theme: templates/catalog/_partials/product-add-to-cart.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-add-to-cart.tpl' + file: 'Classic Theme: templates/catalog/_partials/product-add-to-cart.tpl' locations: - - front office + - 'front office' type: action -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayProductActions - -## Information - -{{% notice tip %}} -**Display additional action button on the product page:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook allow additional actions to be triggered, near the add to cart button.' -This hook allow additional actions to be triggered, near the add to cart button. -{{% /notice %}} - -Hook locations: - - front office - -Hook type: action - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/_partials/product-add-to-cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-add-to-cart.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayProductActions' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md index 0688391cad..855b8fc37d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md @@ -2,45 +2,29 @@ menuTitle: displayProductAdditionalInfo Title: displayProductAdditionalInfo hidden: true -hookTitle: Product page additional info +hookTitle: 'Product page additional info' files: - - Classic Theme: templates/catalog/_partials/quickview.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/quickview.tpl' + file: 'Classic Theme: templates/catalog/_partials/quickview.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - productActions - - displayProductButtons + - productActions + - displayProductButtons origin: theme ---- - -# Hook displayProductAdditionalInfo - -## Aliases - - - productActions - - displayProductButtons - -## Information +array_return: false +check_exceptions: false +chain: false +description: 'This hook adds additional information on the product page' -{{% notice tip %}} -**Product page additional info:** - -This hook adds additional information on the product page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/_partials/quickview.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/quickview.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayProductAdditionalInfo' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md index c973841d2e..44938282cd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md @@ -2,32 +2,27 @@ menuTitle: displayProductListReviews Title: displayProductListReviews hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/catalog/_partials/miniatures/product.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/miniatures/product.tpl' + file: 'Classic Theme: templates/catalog/_partials/miniatures/product.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayProductListReviews - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/catalog/_partials/miniatures/product.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/miniatures/product.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayProductListReviews' product=$product} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md index c101d24f52..17da09e95f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md @@ -2,32 +2,27 @@ menuTitle: displayProductPriceBlock Title: displayProductPriceBlock hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/_partials/order-confirmation-table.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/order-confirmation-table.tpl' + file: 'Classic Theme: templates/checkout/_partials/order-confirmation-table.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayProductPriceBlock - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/order-confirmation-table.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/order-confirmation-table.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayProductPriceBlock' product=$product type="unit_price"} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayReassurance.md b/modules/concepts/hooks/list-of-hooks/displayReassurance.md index dba68237e7..5ce88891e7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayReassurance.md +++ b/modules/concepts/hooks/list-of-hooks/displayReassurance.md @@ -2,32 +2,27 @@ menuTitle: displayReassurance Title: displayReassurance hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/checkout/checkout.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/checkout.tpl' + file: 'Classic Theme: templates/checkout/checkout.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displayReassurance - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/checkout.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/checkout.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayReassurance'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md index d922827ff3..8f97be562f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md @@ -2,47 +2,28 @@ menuTitle: displayRightColumn Title: displayRightColumn hidden: true -hookTitle: New elements on a page (right column) +hookTitle: 'New elements on a page (right column)' files: - - Classic Theme: templates/layouts/layout-both-columns.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' + file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - extraRight + - extraRight origin: theme ---- - -# Hook displayRightColumn - -## Aliases - - - extraRight - -## Information - -{{% notice tip %}} -**New elements on a page (right column):** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new elements in the right-hand column of a page' -This hook displays new elements in the right-hand column of a page -{{% /notice %}} - -{{% notice note %}} -When located on a product page, the hook is [`displayRightColumnProduct`]({{< relref "/8/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct">}}) -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayRightColumn'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md index 90f96e8e9a..2a37174a46 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md @@ -2,43 +2,28 @@ menuTitle: displayRightColumnProduct Title: displayRightColumnProduct hidden: true -hookTitle: New elements on the product page (right column) +hookTitle: 'New elements on the product page (right column)' files: - - Classic Theme: templates/layouts/layout-both-columns.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' + file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - extraRight + - extraRight origin: theme ---- - -# Hook displayRightColumnProduct - -## Aliases - - - extraRight - -## Information - -{{% notice tip %}} -**New elements on the product page (right column):** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new elements in the right-hand column of the product page' -This hook displays new elements in the right-hand column of the product page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/layouts/layout-both-columns.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayRightColumnProduct'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displaySearch.md b/modules/concepts/hooks/list-of-hooks/displaySearch.md index 6d448eb562..ed11a46b64 100644 --- a/modules/concepts/hooks/list-of-hooks/displaySearch.md +++ b/modules/concepts/hooks/list-of-hooks/displaySearch.md @@ -2,32 +2,27 @@ menuTitle: displaySearch Title: displaySearch hidden: true -hookTitle: +hookTitle: null files: - - Classic Theme: templates/errors/not-found.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl' + file: 'Classic Theme: templates/errors/not-found.tpl' locations: - - front office + - 'front office' type: display -hookAliases: +hookAliases: null origin: theme ---- - -# Hook displaySearch - -## Information +array_return: false +check_exceptions: false +chain: false +description: '' -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/errors/not-found.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displaySearch'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md index a75cefe1df..46af3a87d7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md @@ -2,43 +2,28 @@ menuTitle: displayShoppingCart Title: displayShoppingCart hidden: true -hookTitle: Shopping cart - Additional button +hookTitle: 'Shopping cart - Additional button' files: - - Classic Theme: templates/checkout/cart.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl' + file: 'Classic Theme: templates/checkout/cart.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - shoppingCartExtra + - shoppingCartExtra origin: theme ---- - -# Hook displayShoppingCart - -## Aliases - - - shoppingCartExtra - -## Information - -{{% notice tip %}} -**Shopping cart - Additional button:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays new action buttons within the shopping cart' -This hook displays new action buttons within the shopping cart -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayShoppingCart'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md index 244f685ff8..691cbc0a57 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md @@ -2,43 +2,28 @@ menuTitle: displayShoppingCartFooter Title: displayShoppingCartFooter hidden: true -hookTitle: Shopping cart footer +hookTitle: 'Shopping cart footer' files: - - Classic Theme: templates/checkout/cart.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl' + file: 'Classic Theme: templates/checkout/cart.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - shoppingCart + - shoppingCart origin: theme ---- - -# Hook displayShoppingCartFooter - -## Aliases - - - shoppingCart - -## Information - -{{% notice tip %}} -**Shopping cart footer:** +array_return: false +check_exceptions: false +chain: false +description: "This hook displays some specific information on the shopping cart's page" -This hook displays some specific information on the shopping cart's page -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/cart.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayShoppingCartFooter'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/displayTop.md b/modules/concepts/hooks/list-of-hooks/displayTop.md index 645f168d2e..d628540286 100644 --- a/modules/concepts/hooks/list-of-hooks/displayTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayTop.md @@ -2,43 +2,28 @@ menuTitle: displayTop Title: displayTop hidden: true -hookTitle: Top of pages +hookTitle: 'Top of pages' files: - - Classic Theme: templates/checkout/_partials/header.tpl + - + url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' + file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: - - front office + - 'front office' type: display hookAliases: - - top + - top origin: theme ---- - -# Hook displayTop - -## Aliases - - - top - -## Information - -{{% notice tip %}} -**Top of pages:** +array_return: false +check_exceptions: false +chain: false +description: 'This hook displays additional elements at the top of your pages' -This hook displays additional elements at the top of your pages -{{% /notice %}} - -Hook locations: - - front office - -Hook type: display - -Hook origin: theme +--- -Located in: - - [Classic Theme: templates/checkout/_partials/header.tpl](https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {hook h='displayTop'} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md b/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md index 6acdb501de..9e1a8a4b55 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md @@ -2,32 +2,24 @@ menuTitle: filterCategoryContent Title: filterCategoryContent hidden: true -hookTitle: Filter the content page category +hookTitle: 'Filter the content page category' files: - - controllers/front/listing/CategoryController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/listing/CategoryController.php' + file: controllers/front/listing/CategoryController.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterCategoryContent - -## Information - -{{% notice tip %}} -**Filter the content page category:** + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: true +origin: core +description: 'This hook is called just before fetching content page category' -This hook is called just before fetching content page category -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [controllers/front/listing/CategoryController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/listing/CategoryController.php) +--- -This hook has a `$chain` parameter set to `true` (hook will chain the return of hook module, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Parameters details @@ -51,4 +43,4 @@ Hook::exec( $id_shop = null, $chain = true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md b/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md index d7642652c5..d0df77ec2e 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md @@ -2,32 +2,24 @@ menuTitle: filterCmsCategoryContent Title: filterCmsCategoryContent hidden: true -hookTitle: Filter the content page category +hookTitle: 'Filter the content page category' files: - - controllers/front/CmsController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CmsController.php' + file: controllers/front/CmsController.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterCmsCategoryContent - -## Information - -{{% notice tip %}} -**Filter the content page category:** + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: true +origin: core +description: 'This hook is called just before fetching content page category' -This hook is called just before fetching content page category -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [controllers/front/CmsController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CmsController.php) +--- -This hook has a `$chain` parameter set to `true` (hook will chain the return of hook module, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -42,4 +34,4 @@ Hook::exec( $id_shop = null, $chain = true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterCmsContent.md b/modules/concepts/hooks/list-of-hooks/filterCmsContent.md index 6e828280e4..13ce41cd14 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCmsContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCmsContent.md @@ -2,32 +2,24 @@ menuTitle: filterCmsContent Title: filterCmsContent hidden: true -hookTitle: Filter the content page +hookTitle: 'Filter the content page' files: - - controllers/front/CmsController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CmsController.php' + file: controllers/front/CmsController.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterCmsContent - -## Information - -{{% notice tip %}} -**Filter the content page:** + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: true +origin: core +description: 'This hook is called just before fetching content page' -This hook is called just before fetching content page -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [controllers/front/CmsController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/CmsController.php) +--- -This hook has a `$chain` parameter set to `true` (hook will chain the return of hook module, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -42,4 +34,4 @@ Hook::exec( $id_shop = null, $chain = true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md b/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md index 7cc4de7a85..23d906fbe6 100644 --- a/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md @@ -2,32 +2,24 @@ menuTitle: filterHtmlContent Title: filterHtmlContent hidden: true -hookTitle: Filter HTML field before rending a page +hookTitle: 'Filter HTML field before rending a page' files: - - src/Adapter/Presenter/Object/ObjectPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Object/ObjectPresenter.php' + file: src/Adapter/Presenter/Object/ObjectPresenter.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterHtmlContent - -## Information - -{{% notice tip %}} -**Filter HTML field before rending a page:** + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: true +origin: core +description: 'This hook is called just before fetching a page on HTML field' -This hook is called just before fetching a page on HTML field -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [src/Adapter/Presenter/Object/ObjectPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Object/ObjectPresenter.php) +--- -This hook has a `$chain` parameter set to `true` (hook will chain the return of hook module, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -46,4 +38,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md b/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md index 2a0b69a204..79dae44d43 100644 --- a/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md @@ -2,32 +2,24 @@ menuTitle: filterManufacturerContent Title: filterManufacturerContent hidden: true -hookTitle: Filter the content page manufacturer +hookTitle: 'Filter the content page manufacturer' files: - - controllers/front/listing/ManufacturerController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/listing/ManufacturerController.php' + file: controllers/front/listing/ManufacturerController.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterManufacturerContent - -## Information - -{{% notice tip %}} -**Filter the content page manufacturer:** + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: true +origin: core +description: 'This hook is called just before fetching content page manufacturer' -This hook is called just before fetching content page manufacturer -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [controllers/front/listing/ManufacturerController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/listing/ManufacturerController.php) +--- -This hook has a `$chain` parameter set to `true` (hook will chain the return of hook module, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -42,4 +34,4 @@ Hook::exec( $id_shop = null, $chain = true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterProductContent.md b/modules/concepts/hooks/list-of-hooks/filterProductContent.md index c30962f4fa..986d679e8e 100644 --- a/modules/concepts/hooks/list-of-hooks/filterProductContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterProductContent.md @@ -2,32 +2,24 @@ menuTitle: filterProductContent Title: filterProductContent hidden: true -hookTitle: Filter the content page product +hookTitle: 'Filter the content page product' files: - - controllers/front/ProductController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/ProductController.php' + file: controllers/front/ProductController.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterProductContent - -## Information - -{{% notice tip %}} -**Filter the content page product:** + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: true +origin: core +description: 'This hook is called just before fetching content page product' -This hook is called just before fetching content page product -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [controllers/front/ProductController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/ProductController.php) +--- -This hook has a `$chain` parameter set to `true` (hook will chain the return of hook module, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -42,4 +34,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterProductSearch.md b/modules/concepts/hooks/list-of-hooks/filterProductSearch.md index 673d23bd87..21d8b162fc 100644 --- a/modules/concepts/hooks/list-of-hooks/filterProductSearch.md +++ b/modules/concepts/hooks/list-of-hooks/filterProductSearch.md @@ -2,33 +2,27 @@ menuTitle: filterProductSearch Title: filterProductSearch hidden: true -hookTitle: Filter search products result +hookTitle: 'Filter search products result' files: - - modules/blockwishlist/controllers/front/view.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/view.php' + file: modules/blockwishlist/controllers/front/view.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterProductSearch - -## Information + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called in order to allow to modify search product result' -{{% notice tip %}} -**Filter search products result:** - -This hook is called in order to allow to modify search product result -{{% /notice %}} - -Hook locations: - - front office +--- -Located in: - - [modules/blockwishlist/controllers/front/view.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/view.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('filterProductSearch', ['searchVariables' => &$searchVariables]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md b/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md index f9ae9df63e..e883627f5d 100644 --- a/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md @@ -2,32 +2,24 @@ menuTitle: filterSupplierContent Title: filterSupplierContent hidden: true -hookTitle: Filter the content page supplier +hookTitle: 'Filter the content page supplier' files: - - controllers/front/listing/SupplierController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/listing/SupplierController.php' + file: controllers/front/listing/SupplierController.php locations: - - front office -type: -hookAliases: ---- - -# Hook filterSupplierContent - -## Information - -{{% notice tip %}} -**Filter the content page supplier:** + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: true +origin: core +description: 'This hook is called just before fetching content page supplier' -This hook is called just before fetching content page supplier -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [controllers/front/listing/SupplierController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/listing/SupplierController.php) +--- -This hook has a `$chain` parameter set to `true` (hook will chain the return of hook module, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -42,4 +34,4 @@ Hook::exec( $id_shop = null, $chain = true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md b/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md index b83fb08026..5496296f9a 100644 --- a/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md +++ b/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md @@ -2,26 +2,24 @@ menuTitle: gSitemapAppendUrls Title: gSitemapAppendUrls hidden: true -hookTitle: +hookTitle: null files: - - modules/gsitemap/gsitemap.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/gsitemap/gsitemap.php' + file: modules/gsitemap/gsitemap.php locations: - - front office -type: -hookAliases: ---- - -# Hook gSitemapAppendUrls - -## Information + - 'front office' +type: null +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Located in: - - [modules/gsitemap/gsitemap.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/gsitemap/gsitemap.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -29,4 +27,4 @@ This hook has an `$array_return` parameter set to `true` (module output will be Hook::exec(self::HOOK_ADD_URLS, array( 'lang' => $lang, ), null, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md b/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md index 6a7d0b120e..4c5e5ccb04 100644 --- a/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md +++ b/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md @@ -2,27 +2,27 @@ menuTitle: legacyblockkpi Title: legacyblockkpi hidden: true -hookTitle: +hookTitle: null files: - - src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/catalog.html.twig + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/catalog.html.twig' + file: src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/catalog.html.twig locations: - - back office -type: -hookAliases: ---- - -# Hook legacyblockkpi + - 'back office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -## Information - -Hook locations: - - back office +--- -Located in: - - [src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/catalog.html.twig](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/catalog.html.twig) +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php {{ renderhook('legacy_block_kpi', {'kpi_controller': 'AdminProductsController'}) }} -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/moduleRoutes.md b/modules/concepts/hooks/list-of-hooks/moduleRoutes.md index 03614aebde..8b73c173c0 100644 --- a/modules/concepts/hooks/list-of-hooks/moduleRoutes.md +++ b/modules/concepts/hooks/list-of-hooks/moduleRoutes.md @@ -2,36 +2,25 @@ menuTitle: moduleRoutes Title: moduleRoutes hidden: true -hookTitle: +hookTitle: null files: - - classes/Dispatcher.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Dispatcher.php' + file: classes/Dispatcher.php locations: - - front office -type: -hookAliases: + - 'front office' +type: null +hookAliases: null hasExample: true ---- - -# Hook moduleRoutes - -## Information - -{{% notice tip %}} -**Adds route to the PrestaShop router** - -This hook allows your module to extend default PrestaShop routes with custom ones and map them to your module front controllers. -{{% /notice %}} +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook allows your module to extend default PrestaShop routes with custom ones and map them to your module front controllers.' +--- -Hook locations: - - front office - -Located in: - - [classes/Dispatcher.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Dispatcher.php) - -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). - -This hook has a `$check_exception` parameter set to `false` (check permission exception, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -190,3 +179,4 @@ class MyModuleAddingRoutes extends Module ``` The complete implementation example is available in our [example modules repository](https://github.com/PrestaShop/example-modules/tree/master/demomoduleroutes). + diff --git a/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md b/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md index 97a6807462..ee8a29f7ce 100644 --- a/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md +++ b/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md @@ -2,24 +2,24 @@ menuTitle: overrideLayoutTemplate Title: overrideLayoutTemplate hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/FrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' + file: classes/controller/FrontController.php locations: - - front office -type: -hookAliases: ---- - -# Hook overrideLayoutTemplate + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -## Information - -Hook locations: - - front office +--- -Located in: - - [classes/controller/FrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -34,4 +34,4 @@ Hook::exec( 'content_only' => $content_only, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md b/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md index 2c8e9c628a..7d15700888 100644 --- a/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md +++ b/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md @@ -2,24 +2,24 @@ menuTitle: overrideMinimalPurchasePrice Title: overrideMinimalPurchasePrice hidden: true -hookTitle: +hookTitle: null files: - - src/Adapter/Presenter/Cart/CartPresenter.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Cart/CartPresenter.php' + file: src/Adapter/Presenter/Cart/CartPresenter.php locations: - - front office -type: -hookAliases: ---- - -# Hook overrideMinimalPurchasePrice + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: '' -## Information - -Hook locations: - - front office +--- -Located in: - - [src/Adapter/Presenter/Cart/CartPresenter.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Cart/CartPresenter.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -27,4 +27,4 @@ Located in: Hook::exec('overrideMinimalPurchasePrice', [ 'minimalPurchase' => &$minimalPurchase, ]) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/productSearchProvider.md b/modules/concepts/hooks/list-of-hooks/productSearchProvider.md index 8ae75b0792..2403683894 100644 --- a/modules/concepts/hooks/list-of-hooks/productSearchProvider.md +++ b/modules/concepts/hooks/list-of-hooks/productSearchProvider.md @@ -2,26 +2,24 @@ menuTitle: productSearchProvider Title: productSearchProvider hidden: true -hookTitle: +hookTitle: null files: - - classes/controller/ProductListingFrontController.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/ProductListingFrontController.php' + file: classes/controller/ProductListingFrontController.php locations: - - front office -type: -hookAliases: ---- - -# Hook productSearchProvider - -## Information + - 'front office' +type: null +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Located in: - - [classes/controller/ProductListingFrontController.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/ProductListingFrontController.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -32,4 +30,4 @@ Hook::exec( null, true ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md b/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md index 6f1059e0e8..16ee8a4b45 100644 --- a/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md +++ b/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md @@ -2,30 +2,24 @@ menuTitle: sendMailAlterTemplateVars Title: sendMailAlterTemplateVars hidden: true -hookTitle: Alter template vars on the fly +hookTitle: 'Alter template vars on the fly' files: - - classes/Mail.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' + file: classes/Mail.php locations: - - front office -type: -hookAliases: ---- - -# Hook sendMailAlterTemplateVars - -## Information + - 'front office' +type: null +hookAliases: null +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is called when Mail::send() is called' -{{% notice tip %}} -**Alter template vars on the fly:** - -This hook is called when Mail::send() is called -{{% /notice %}} - -Hook locations: - - front office +--- -Located in: - - [classes/Mail.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php) +{{% hookDescriptor %}} ## Call of the Hook in the origin file @@ -37,4 +31,4 @@ Hook::exec( 'template_vars' => &$templateVars, ] ) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/termsAndConditions.md b/modules/concepts/hooks/list-of-hooks/termsAndConditions.md index 8b06518ff7..c7fe2cb92e 100644 --- a/modules/concepts/hooks/list-of-hooks/termsAndConditions.md +++ b/modules/concepts/hooks/list-of-hooks/termsAndConditions.md @@ -2,29 +2,27 @@ menuTitle: termsAndConditions Title: termsAndConditions hidden: true -hookTitle: +hookTitle: null files: - - classes/checkout/ConditionsToApproveFinder.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/ConditionsToApproveFinder.php' + file: classes/checkout/ConditionsToApproveFinder.php locations: - - front office -type: -hookAliases: ---- - -# Hook termsAndConditions - -## Information + - 'front office' +type: null +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: '' -Hook locations: - - front office - -Located in: - - [classes/checkout/ConditionsToApproveFinder.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/ConditionsToApproveFinder.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('termsAndConditions', [], null, true) -``` \ No newline at end of file +``` diff --git a/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md b/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md index 6ebcc57a4f..0ec33e1f2d 100644 --- a/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md +++ b/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md @@ -2,35 +2,27 @@ menuTitle: validateCustomerFormFields Title: validateCustomerFormFields hidden: true -hookTitle: Customer registration form validation +hookTitle: 'Customer registration form validation' files: - - classes/form/CustomerForm.php + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerForm.php' + file: classes/form/CustomerForm.php locations: - - front office -type: -hookAliases: ---- - -# Hook validateCustomerFormFields - -## Information - -{{% notice tip %}} -**Customer registration form validation:** + - 'front office' +type: null +hookAliases: null +array_return: true +check_exceptions: false +chain: false +origin: core +description: 'This hook is called to a module when it has sent additional fields with additionalCustomerFormFields' -This hook is called to a module when it has sent additional fields with additionalCustomerFormFields -{{% /notice %}} - -Hook locations: - - front office - -Located in: - - [classes/form/CustomerForm.php](https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerForm.php) +--- -This hook has an `$array_return` parameter set to `true` (module output will be set by name in an array, [see explaination here]({{< relref "/8/development/components/hook/dispatching-hook">}})). +{{% hookDescriptor %}} ## Call of the Hook in the origin file ```php Hook::exec('validateCustomerFormFields', ['fields' => $formFields], $moduleId, true) -``` \ No newline at end of file +``` From 45437a71808d4711ca6ee29b8de607413411049b Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 10 Oct 2023 13:59:01 +0200 Subject: [PATCH 15/23] Add module and theme info --- .../concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md | 5 +++-- .../hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md | 5 +++-- .../hooks/list-of-hooks/actionNewsletterRegistrationAfter.md | 5 +++-- .../list-of-hooks/actionNewsletterRegistrationBefore.md | 4 ++-- .../list-of-hooks/actionObjectProductCommentValidateAfter.md | 5 +++-- .../concepts/hooks/list-of-hooks/actionProductSearchAfter.md | 5 +++-- .../concepts/hooks/list-of-hooks/actionWishlistAddProduct.md | 3 ++- .../list-of-hooks/displayAdditionalCustomerAddressFields.md | 1 + .../hooks/list-of-hooks/displayAddressSelectorBottom.md | 1 + .../hooks/list-of-hooks/displayAfterBodyOpeningTag.md | 1 + .../hooks/list-of-hooks/displayAfterProductThumbs.md | 1 + modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md | 1 + modules/concepts/hooks/list-of-hooks/displayBanner.md | 1 + .../hooks/list-of-hooks/displayBeforeBodyClosingTag.md | 1 + .../hooks/list-of-hooks/displayCMSDisputeInformation.md | 1 + .../concepts/hooks/list-of-hooks/displayCMSPrintButton.md | 1 + .../hooks/list-of-hooks/displayCartExtraProductActions.md | 1 + .../concepts/hooks/list-of-hooks/displayCartModalContent.md | 1 + .../concepts/hooks/list-of-hooks/displayCartModalFooter.md | 1 + .../hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md | 1 + .../hooks/list-of-hooks/displayCheckoutSubtotalDetails.md | 1 + .../hooks/list-of-hooks/displayCheckoutSummaryTop.md | 1 + .../concepts/hooks/list-of-hooks/displayContactContent.md | 2 ++ .../concepts/hooks/list-of-hooks/displayContactLeftColumn.md | 2 ++ .../hooks/list-of-hooks/displayContactRightColumn.md | 2 ++ .../hooks/list-of-hooks/displayCrossSellingShoppingCart.md | 1 + .../concepts/hooks/list-of-hooks/displayCustomerAccount.md | 1 + .../hooks/list-of-hooks/displayCustomerLoginFormAfter.md | 1 + .../concepts/hooks/list-of-hooks/displayExpressCheckout.md | 1 + modules/concepts/hooks/list-of-hooks/displayFooter.md | 1 + modules/concepts/hooks/list-of-hooks/displayFooterAfter.md | 1 + modules/concepts/hooks/list-of-hooks/displayFooterBefore.md | 1 + .../concepts/hooks/list-of-hooks/displayFooterCategory.md | 1 + modules/concepts/hooks/list-of-hooks/displayFooterProduct.md | 1 + modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md | 1 + .../concepts/hooks/list-of-hooks/displayHeaderCategory.md | 1 + modules/concepts/hooks/list-of-hooks/displayLeftColumn.md | 1 + .../concepts/hooks/list-of-hooks/displayLeftColumnProduct.md | 1 + modules/concepts/hooks/list-of-hooks/displayNav1.md | 1 + modules/concepts/hooks/list-of-hooks/displayNav2.md | 1 + modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md | 1 + .../hooks/list-of-hooks/displayNewsletterRegistration.md | 1 + modules/concepts/hooks/list-of-hooks/displayNotFound.md | 1 + .../hooks/list-of-hooks/displayOrderConfirmation1.md | 1 + .../hooks/list-of-hooks/displayOrderConfirmation2.md | 1 + .../concepts/hooks/list-of-hooks/displayPaymentByBinaries.md | 1 + modules/concepts/hooks/list-of-hooks/displayPaymentTop.md | 1 + .../hooks/list-of-hooks/displayPersonalInformationTop.md | 1 + .../concepts/hooks/list-of-hooks/displayProductActions.md | 1 + .../hooks/list-of-hooks/displayProductAdditionalInfo.md | 1 + .../hooks/list-of-hooks/displayProductListReviews.md | 1 + .../concepts/hooks/list-of-hooks/displayProductPriceBlock.md | 1 + modules/concepts/hooks/list-of-hooks/displayReassurance.md | 1 + modules/concepts/hooks/list-of-hooks/displayRightColumn.md | 1 + .../hooks/list-of-hooks/displayRightColumnProduct.md | 1 + modules/concepts/hooks/list-of-hooks/displaySearch.md | 1 + modules/concepts/hooks/list-of-hooks/displayShoppingCart.md | 1 + .../hooks/list-of-hooks/displayShoppingCartFooter.md | 1 + modules/concepts/hooks/list-of-hooks/displayTop.md | 1 + 59 files changed, 74 insertions(+), 13 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md index 7d03c5632f..71f38249e4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md @@ -5,8 +5,9 @@ hidden: true hookTitle: null files: - - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php' - file: modules/psgdpr/psgdpr.php + module: psgdpr + url: 'https://github.com/PrestaShop/psgdpr/blob/master/src/Service/CustomerService.php' + file: modules/psgdpr/src/Service/CustomerService.php locations: - 'front office' type: action diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md index 6e262573cd..725fa33716 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md @@ -5,8 +5,9 @@ hidden: true hookTitle: null files: - - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailalerts/MailAlert.php' - file: modules/ps_emailalerts/MailAlert.php + module: ps_emailalerts + url: 'https://github.com/PrestaShop/ps_emailalerts/blob/dev/MailAlert.php' + file: MailAlert.php locations: - 'front office' type: action diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md index a4b78200fb..a9e97af597 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md @@ -5,8 +5,9 @@ hidden: true hookTitle: null files: - - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php' - file: modules/ps_emailsubscription/ps_emailsubscription.php + module: ps_emailsubscription + url: 'https://github.com/PrestaShop/ps_emailsubscription/blob/master/ps_emailsubscription.php' + file: ps_emailsubscription.php locations: - 'front office' type: action diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md index f18b701879..5a39ee7725 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md @@ -5,8 +5,8 @@ hidden: true hookTitle: null files: - - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/ps_emailsubscription/ps_emailsubscription.php' - file: modules/ps_emailsubscription/ps_emailsubscription.php + url: 'https://github.com/PrestaShop/ps_emailsubscription/blob/master/ps_emailsubscription.php' + file: ps_emailsubscription.php locations: - 'front office' type: action diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md index 95ce4370d9..0e2fc7586b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md @@ -5,8 +5,9 @@ hidden: true hookTitle: null files: - - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/productcomments/ProductComment.php' - file: modules/productcomments/ProductComment.php + module: productcomments + url: 'https://github.com/PrestaShop/productcomments/blob/master/ProductComment.php' + file: ProductComment.php locations: - 'back office' - 'front office' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md index adc5143132..46a4b2e67d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md @@ -5,8 +5,9 @@ hidden: true hookTitle: 'Event triggered after search product completed' files: - - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/view.php' - file: modules/blockwishlist/controllers/front/view.php + module: blockwishlist + url: 'https://github.com/PrestaShop/blockwishlist/blob/master/controllers/front/view.php' + file: controllers/front/view.php locations: - 'front office' type: action diff --git a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md index 96db8b2a32..8e4e70ffdc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md @@ -5,7 +5,8 @@ hidden: true hookTitle: null files: - - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/blockwishlist/controllers/front/action.php' + module: blockwishlist + url: 'https://github.com/PrestaShop/blockwishlist/blob/master/controllers/front/action.php' file: modules/blockwishlist/controllers/front/action.php locations: - 'front office' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md index 3ea1391459..1540d9371c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Display additional customer address fields' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/_partials/block-address.tpl' file: 'Classic Theme: templates/customer/_partials/block-address.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md index 31e69a5776..23d7045f82 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/addresses.tpl' file: 'Classic Theme: templates/checkout/_partials/steps/addresses.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md index 40e9eb22ec..f3259ef2a0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Very top of pages' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md index 3b42bd337d..9f0296f6cd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Display extra content below product thumbs' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-cover-thumbnails.tpl' file: 'Classic Theme: templates/catalog/_partials/product-cover-thumbnails.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md index 011e9bc273..89cc57f8b0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'After title tag' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/head.tpl' file: 'Classic Theme: templates/_partials/head.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayBanner.md b/modules/concepts/hooks/list-of-hooks/displayBanner.md index bede891a64..cce740a900 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBanner.md +++ b/modules/concepts/hooks/list-of-hooks/displayBanner.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Very top of pages' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/header.tpl' file: 'Classic Theme: templates/_partials/header.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md index 918e11a0b7..3572444634 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Very bottom of pages' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md index e3c8772bc7..674a717bf2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl' file: 'Classic Theme: templates/cms/page.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md index abdb0c4a45..d77d9df0c3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/cms/page.tpl' file: 'Classic Theme: templates/cms/page.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md index 9c7fafa545..1efd1d74eb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Extra buttons in shopping cart' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-product-line.tpl' file: 'Classic Theme: templates/checkout/_partials/cart-detailed-product-line.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md index afeae0970a..8504ffeeff 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Content of Add-to-cart modal' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl' file: 'Classic Theme: modules/ps_shoppingcart/modal.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md index a59ebc917a..a2bfb6d74d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Bottom of Add-to-cart modal' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_shoppingcart/modal.tpl' file: 'Classic Theme: modules/ps_shoppingcart/modal.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md index 162f8cab45..778f14aaa3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Show custom content before checkout confirmation' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl' file: 'Classic Theme: templates/checkout/_partials/steps/payment.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md index 11e1097dc5..5b077bc29b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-totals.tpl' file: 'Classic Theme: templates/checkout/_partials/cart-detailed-totals.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md index fa8a514cbb..2212ebf7bb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Cart summary top' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-summary-top.tpl' file: 'Classic Theme: templates/checkout/_partials/cart-summary-top.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayContactContent.md b/modules/concepts/hooks/list-of-hooks/displayContactContent.md index 94b2c60080..08bd57a40c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactContent.md @@ -5,9 +5,11 @@ hidden: true hookTitle: 'Content wrapper section of the contact page' files: - + theme: Hummingbird url: 'https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl' file: 'Hummingbird Theme: templates/contact.tpl' - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl' file: 'Classic Theme: templates/contact.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md index c7f8c8e25b..654bf2a138 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md @@ -5,9 +5,11 @@ hidden: true hookTitle: 'Left column blocks on the contact page' files: - + theme: Hummingbird url: 'https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl' file: 'Hummingbird Theme: templates/contact.tpl' - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl' file: 'Classic Theme: templates/contact.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md index 776aaef193..8fdb83fd42 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md @@ -5,9 +5,11 @@ hidden: true hookTitle: 'Right column blocks of the contact page' files: - + theme: Hummingbird url: 'https://github.com/PrestaShop/hummingbird/blob/develop/templates/contact.tpl' file: 'Hummingbird Theme: templates/contact.tpl' - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/contact.tpl' file: 'Classic Theme: templates/contact.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md index 64058857f8..b2a14f4122 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl' file: 'Classic Theme: templates/checkout/cart.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md index b0a18fff95..b8fa708409 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Customer account displayed in Front Office' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/my-account.tpl' file: 'Classic Theme: templates/customer/my-account.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md index d5b58d4ff0..56cda9b3bc 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Display elements after login form' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/customer/authentication.tpl' file: 'Classic Theme: templates/customer/authentication.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md index bdae2105e4..dda690f18f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md +++ b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/cart-detailed-actions.tpl' file: 'Classic Theme: templates/checkout/_partials/cart-detailed-actions.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayFooter.md b/modules/concepts/hooks/list-of-hooks/displayFooter.md index 3c9aa84e6f..85b9109509 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooter.md @@ -5,6 +5,7 @@ hidden: true hookTitle: Footer files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl' file: 'Classic Theme: templates/_partials/footer.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md index 675b02f6fc..a19d829033 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl' file: 'Classic Theme: templates/_partials/footer.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md index 5688ed3dff..816ee31239 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/_partials/footer.tpl' file: 'Classic Theme: templates/_partials/footer.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md index 39243afc38..999d2a035f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'This hook adds new blocks under the products listing in a category/search' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl' file: 'Classic Theme: templates/catalog/listing/product-list.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md index 6f10862e63..91c58575e0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Product footer' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/product.tpl' file: 'Classic Theme: templates/catalog/product.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md index 5900d5df7d..1b2e4cfea9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md +++ b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' file: 'Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md index 1b90c11db3..349f6ec5c2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Footer above of the product list' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/2.0.x/templates/catalog/listing/product-list.tpl' file: 'Classic Theme: templates/catalog/listing/product-list.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md index c85939c25a..a85fece483 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'New elements on a page (left column)' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md index 4049f564da..d6e41a642b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'New elements on the product page (left column)' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayNav1.md b/modules/concepts/hooks/list-of-hooks/displayNav1.md index 1c0163ff88..ccf7de18f1 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav1.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav1.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayNav2.md b/modules/concepts/hooks/list-of-hooks/displayNav2.md index e28879a267..5f0dbb42b9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav2.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav2.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md index 2c54a84830..8213f26fbf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md +++ b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md @@ -5,6 +5,7 @@ hidden: true hookTitle: Navigation files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md index dc63fab665..cc28ce6c52 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md +++ b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' file: 'Classic Theme: modules/ps_emailsubscription/views/templates/hook/ps_emailsubscription.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayNotFound.md b/modules/concepts/hooks/list-of-hooks/displayNotFound.md index 334ef2c039..ebdee531cb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNotFound.md +++ b/modules/concepts/hooks/list-of-hooks/displayNotFound.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl' file: 'Classic Theme: templates/errors/not-found.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md index f8585a3a94..f17ec8392d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl' file: 'Classic Theme: templates/checkout/order-confirmation.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md index a4e1c7a9af..cd7e8937cf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/order-confirmation.tpl' file: 'Classic Theme: templates/checkout/order-confirmation.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md index 6383438847..61b8f561dd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Payment form generated by binaries' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl' file: 'Classic Theme: templates/checkout/_partials/steps/payment.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md index 30ad44d5c6..c896c25d53 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Top of payment page' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/payment.tpl' file: 'Classic Theme: templates/checkout/_partials/steps/payment.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md index 4ff1fdb0c8..d3c9d63e08 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Content in the checkout funnel, on top of the personal information panel' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/steps/personal-information.tpl' file: 'Classic Theme: templates/checkout/_partials/steps/personal-information.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayProductActions.md b/modules/concepts/hooks/list-of-hooks/displayProductActions.md index f2a844f67f..ca7d39bf79 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductActions.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Display additional action button on the product page' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-add-to-cart.tpl' file: 'Classic Theme: templates/catalog/_partials/product-add-to-cart.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md index 855b8fc37d..cc269af3e1 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Product page additional info' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/quickview.tpl' file: 'Classic Theme: templates/catalog/_partials/quickview.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md index 44938282cd..2912e2d22c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/miniatures/product.tpl' file: 'Classic Theme: templates/catalog/_partials/miniatures/product.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md index 17da09e95f..15224c6ab7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/order-confirmation-table.tpl' file: 'Classic Theme: templates/checkout/_partials/order-confirmation-table.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayReassurance.md b/modules/concepts/hooks/list-of-hooks/displayReassurance.md index 5ce88891e7..a5382516bf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayReassurance.md +++ b/modules/concepts/hooks/list-of-hooks/displayReassurance.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/checkout.tpl' file: 'Classic Theme: templates/checkout/checkout.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md index 8f97be562f..4e23c8647e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'New elements on a page (right column)' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md index 2a37174a46..b7dbffb38f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'New elements on the product page (right column)' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/layouts/layout-both-columns.tpl' file: 'Classic Theme: templates/layouts/layout-both-columns.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displaySearch.md b/modules/concepts/hooks/list-of-hooks/displaySearch.md index ed11a46b64..abaa66ea0c 100644 --- a/modules/concepts/hooks/list-of-hooks/displaySearch.md +++ b/modules/concepts/hooks/list-of-hooks/displaySearch.md @@ -5,6 +5,7 @@ hidden: true hookTitle: null files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/errors/not-found.tpl' file: 'Classic Theme: templates/errors/not-found.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md index 46af3a87d7..ae48874565 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Shopping cart - Additional button' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl' file: 'Classic Theme: templates/checkout/cart.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md index 691cbc0a57..f252b55550 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Shopping cart footer' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/cart.tpl' file: 'Classic Theme: templates/checkout/cart.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/displayTop.md b/modules/concepts/hooks/list-of-hooks/displayTop.md index d628540286..3affda4244 100644 --- a/modules/concepts/hooks/list-of-hooks/displayTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayTop.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Top of pages' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/checkout/_partials/header.tpl' file: 'Classic Theme: templates/checkout/_partials/header.tpl' locations: From b6da1539e9e1955a5f62eb628c3b5fddb5acc6f2 Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 10 Oct 2023 14:02:07 +0200 Subject: [PATCH 16/23] remove null titles / aliases --- .../hooks/list-of-hooks/actionAfter.md | 4 ++-- .../hooks/list-of-hooks/actionBefore.md | 4 ++-- .../hooks/list-of-hooks/actionFormModifier.md | 4 ++-- .../list-of-hooks/actionListingFieldsModifier.md | 4 ++-- .../list-of-hooks/actionListingResultsModifier.md | 4 ++-- .../hooks/list-of-hooks/actionOptionsModifier.md | 4 ++-- .../list-of-hooks/actionGridDataModifier.md | 4 ++-- .../actionGridDefinitionModifier.md | 4 ++-- .../actionGridFilterFormModifier.md | 4 ++-- .../actionGridPresenterModifier.md | 4 ++-- .../actionGridQueryBuilderModifier.md | 4 ++-- .../list-of-hooks/actionFormBuilderModifier.md | 4 ++-- .../list-of-hooks/actionFormDataProviderData.md | 4 ++-- .../actionFormDataProviderDefaultData.md | 4 ++-- .../actionListingFieldsModifier.md | 4 ++-- .../actionListingResultsModifier.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionAdminAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionAdminBefore.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionAdminActivateAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionAdminActivateBefore.md | 4 ++-- ...AdminAdminShopParametersMetaControllerPostProcessBefore.md | 2 +- .../actionAdminAdminWebserviceControllerPostProcessBefore.md | 4 ++-- ...dminAdministrationControllerPostProcessBefore.md | 4 ++-- .../actionAdminAdministrationControllerPostProcessBefore.md | 2 +- ...ametersPerformanceControllerPostProcessBefore.md | 4 ++-- ...dvancedParametersPerformanceControllerPostProcessBefore.md | 2 +- .../hooks/list-of-hooks/actionAdminControllerInitAfter.md | 2 +- .../hooks/list-of-hooks/actionAdminControllerInitBefore.md | 2 +- .../hooks/list-of-hooks/actionAdminControllerSetMedia.md | 4 ++-- .../hooks/list-of-hooks/actionAdminDeactivateAfter.md | 4 ++-- .../hooks/list-of-hooks/actionAdminDeactivateBefore.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md | 4 ++-- .../hooks/list-of-hooks/actionAdminDuplicateBefore.md | 4 ++-- ...ationalGeolocationControllerPostProcessBefore.md | 4 ++-- ...dminInternationalGeolocationControllerPostProcessBefore.md | 2 +- ...tionalLocalizationControllerPostProcessBefore.md | 4 ++-- ...minInternationalLocalizationControllerPostProcessBefore.md | 2 +- .../hooks/list-of-hooks/actionAdminLoginControllerBefore.md | 2 +- .../list-of-hooks/actionAdminLoginControllerForgotAfter.md | 2 +- .../list-of-hooks/actionAdminLoginControllerForgotBefore.md | 2 +- .../list-of-hooks/actionAdminLoginControllerLoginAfter.md | 2 +- .../list-of-hooks/actionAdminLoginControllerLoginBefore.md | 2 +- .../list-of-hooks/actionAdminLoginControllerResetAfter.md | 2 +- .../list-of-hooks/actionAdminLoginControllerResetBefore.md | 2 +- .../hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md | 2 +- .../actionAdminLogsControllerPostProcessBefore.md | 4 ++-- .../actionAdminMaintenanceControllerPostProcessBefore.md | 4 ++-- .../list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md | 4 ++-- .../list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md | 4 ++-- .../list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md | 2 +- .../actionAdminPreferencesControllerPostProcessBefore.md | 4 ++-- .../actionAdminProductsControllerActivateAfter.md | 4 ++-- .../actionAdminProductsControllerActivateBefore.md | 4 ++-- .../actionAdminProductsControllerDeactivateAfter.md | 4 ++-- .../actionAdminProductsControllerDeactivateBefore.md | 4 ++-- .../list-of-hooks/actionAdminProductsControllerDeleteAfter.md | 4 ++-- .../actionAdminProductsControllerDeleteBefore.md | 4 ++-- .../actionAdminProductsControllerDuplicateAfter.md | 4 ++-- .../actionAdminProductsControllerDuplicateBefore.md | 4 ++-- .../list-of-hooks/actionAdminProductsControllerSortAfter.md | 4 ++-- .../list-of-hooks/actionAdminProductsControllerSortBefore.md | 4 ++-- .../list-of-hooks/actionAdminProductsListingFieldsModifier.md | 4 ++-- .../actionAdminProductsListingResultsModifier.md | 4 ++-- .../actionAdminSecurityControllerPostProcessBefore.md | 2 +- ...tionAdminShippingPreferencesControllerPostProcessBefore.md | 2 +- ...ingPreferencesControllerPostProcessCarrierOptionsBefore.md | 2 +- ...nShippingPreferencesControllerPostProcessHandlingBefore.md | 2 +- ...ShopParametersMetaControllerPostProcessBefore.md | 4 ++-- ...rsOrderPreferencesControllerPostProcessBefore.md | 4 ++-- ...opParametersOrderPreferencesControllerPostProcessBefore.md | 2 +- ...ProductPreferencesControllerPostProcessBefore.md | 4 ++-- ...ParametersProductPreferencesControllerPostProcessBefore.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md | 4 ++-- .../actionAdminThemesControllerUpdateoptionsAfter.md | 4 ++-- .../list-of-hooks/actionAfterCreateFormHandler.md | 4 ++-- .../list-of-hooks/actionAfterUpdateFormHandler.md | 4 ++-- .../list-of-hooks/actionAjaxDieBefore.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md | 2 +- .../hooks/list-of-hooks/actionAttributeCombinationDelete.md | 4 ++-- .../hooks/list-of-hooks/actionAttributeCombinationSave.md | 4 ++-- .../hooks/list-of-hooks/actionAuthenticationBefore.md | 2 +- .../list-of-hooks/actionBeforeAjaxDie.md | 4 ++-- .../list-of-hooks/actionBeforeCreateFormHandler.md | 4 ++-- .../list-of-hooks/actionBeforeUpdateFormHandler.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md | 2 +- .../hooks/list-of-hooks/actionBuildMailLayoutVariables.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCartSummary.md | 4 ++-- .../hooks/list-of-hooks/actionCartUpdateQuantityBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md | 2 +- modules/concepts/hooks/list-of-hooks/actionClearCache.md | 2 +- .../concepts/hooks/list-of-hooks/actionClearCompileCache.md | 2 +- modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md | 2 +- .../concepts/hooks/list-of-hooks/actionControllerInitAfter.md | 2 +- .../hooks/list-of-hooks/actionControllerInitBefore.md | 2 +- .../hooks/list-of-hooks/actionCustomerAccountUpdate.md | 2 +- .../concepts/hooks/list-of-hooks/actionCustomerAddGroups.md | 4 ++-- .../hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md | 2 +- .../hooks/list-of-hooks/actionCustomerLogoutBefore.md | 2 +- .../concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md | 4 ++-- .../hooks/list-of-hooks/actionDeliveryPriceByPrice.md | 4 ++-- .../hooks/list-of-hooks/actionDeliveryPriceByWeight.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionDispatcher.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md | 2 +- .../concepts/hooks/list-of-hooks/actionDispatcherBefore.md | 2 +- .../concepts/hooks/list-of-hooks/actionDownloadAttachment.md | 4 ++-- .../hooks/list-of-hooks/actionEmailAddAfterContent.md | 2 +- .../hooks/list-of-hooks/actionEmailAddBeforeContent.md | 2 +- modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md | 4 ++-- .../hooks/list-of-hooks/actionFilterDeliveryOptionList.md | 2 +- .../hooks/list-of-hooks/actionFrontControllerInitBefore.md | 2 +- .../hooks/list-of-hooks/actionFrontControllerSetMedia.md | 4 ++-- .../hooks/list-of-hooks/actionFrontControllerSetVariables.md | 2 +- .../hooks/list-of-hooks/actionGenerateDocumentReference.md | 2 +- .../hooks/list-of-hooks/actionGetAdminOrderButtons.md | 2 +- .../hooks/list-of-hooks/actionGetAdminToolbarButtons.md | 2 +- .../hooks/list-of-hooks/actionGetAlternativeSearchPanels.md | 2 +- .../hooks/list-of-hooks/actionGetExtraMailTemplateVars.md | 4 ++-- .../hooks/list-of-hooks/actionGetIDZoneByAddressID.md | 4 ++-- .../hooks/list-of-hooks/actionGetMailLayoutTransformations.md | 2 +- .../hooks/list-of-hooks/actionGetProductPropertiesAfter.md | 4 ++-- .../list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md | 2 +- .../hooks/list-of-hooks/actionGetProductPropertiesBefore.md | 4 ++-- .../hooks/list-of-hooks/actionInvoiceNumberFormatted.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionListMailThemes.md | 2 +- modules/concepts/hooks/list-of-hooks/actionListModules.md | 2 +- .../concepts/hooks/list-of-hooks/actionLoggerLogMessage.md | 2 +- .../hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md | 4 ++-- .../hooks/list-of-hooks/actionModifyFrontendSitemap.md | 2 +- .../concepts/hooks/list-of-hooks/actionModuleInstallAfter.md | 2 +- .../concepts/hooks/list-of-hooks/actionModuleInstallBefore.md | 2 +- .../hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md | 4 ++-- .../hooks/list-of-hooks/actionModuleRegisterHookAfter.md | 4 ++-- .../hooks/list-of-hooks/actionModuleRegisterHookBefore.md | 4 ++-- .../hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md | 4 ++-- .../hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md | 4 ++-- .../hooks/list-of-hooks/actionModuleUninstallAfter.md | 2 +- .../hooks/list-of-hooks/actionModuleUninstallBefore.md | 2 +- .../hooks/list-of-hooks/actionNewsletterRegistrationAfter.md | 4 ++-- .../hooks/list-of-hooks/actionNewsletterRegistrationBefore.md | 4 ++-- .../hooks/list-of-hooks/actionObjectAddAfter.md | 4 ++-- .../hooks/list-of-hooks/actionObjectAddBefore.md | 4 ++-- .../hooks/list-of-hooks/actionObjectDeleteAfter.md | 4 ++-- .../list-of-hooks/actionObjectDeleteBefore.md | 4 ++-- .../hooks/list-of-hooks/actionObjectUpdateAfter.md | 4 ++-- .../list-of-hooks/actionObjectUpdateBefore.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md | 4 ++-- .../hooks/list-of-hooks/actionObjectAttributeAddBefore.md | 4 ++-- .../list-of-hooks/actionObjectAttributeGroupAddBefore.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md | 4 ++-- .../list-of-hooks/actionObjectProductCommentValidateAfter.md | 4 ++-- .../list-of-hooks/actionObjectProductInCartDeleteAfter.md | 2 +- .../list-of-hooks/actionObjectProductInCartDeleteBefore.md | 2 +- .../concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionOrderEdited.md | 2 +- .../hooks/list-of-hooks/actionOrderHistoryAddAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md | 2 +- .../hooks/list-of-hooks/actionOverrideEmployeeImage.md | 2 +- .../concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionPresentCart.md | 2 +- modules/concepts/hooks/list-of-hooks/actionPresentModule.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionPresentOrder.md | 2 +- .../concepts/hooks/list-of-hooks/actionPresentOrderReturn.md | 2 +- .../hooks/list-of-hooks/actionPresentPaymentOptions.md | 2 +- modules/concepts/hooks/list-of-hooks/actionPresentProduct.md | 2 +- .../hooks/list-of-hooks/actionPresentProductListing.md | 2 +- .../concepts/hooks/list-of-hooks/actionProductActivation.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionProductCoverage.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionProductOutOfStock.md | 1 + .../hooks/list-of-hooks/actionProductPriceCalculation.md | 2 +- .../concepts/hooks/list-of-hooks/actionProductSearchAfter.md | 2 +- .../list-of-hooks/actionProductSearchProviderRunQueryAfter.md | 2 +- .../actionProductSearchProviderRunQueryBefore.md | 2 +- modules/concepts/hooks/list-of-hooks/actionSearch.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionSetInvoice.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionShopDataDuplication.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md | 2 +- .../hooks/list-of-hooks/actionSubmitCustomerAddressForm.md | 4 ++-- modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md | 2 +- .../hooks/list-of-hooks/actionValidateCustomerAddressForm.md | 2 +- .../concepts/hooks/list-of-hooks/actionValidateOrderAfter.md | 2 +- .../hooks/list-of-hooks/actionValidateStepComplete.md | 4 ++-- .../concepts/hooks/list-of-hooks/actionWishlistAddProduct.md | 4 ++-- .../concepts/hooks/list-of-hooks/addWebserviceResources.md | 2 +- .../hooks/list-of-hooks/additionalCustomerAddressFields.md | 2 +- .../hooks/list-of-hooks/additionalCustomerFormFields.md | 2 +- modules/concepts/hooks/list-of-hooks/dashboardData.md | 4 ++-- modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md | 4 ++-- modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md | 2 +- modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md | 4 ++-- .../concepts/hooks/list-of-hooks/deleteProductAttribute.md | 4 ++-- .../list-of-hooks/displayAdditionalCustomerAddressFields.md | 2 +- .../hooks/list-of-hooks/displayAddressSelectorBottom.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayAdminAfterHeader.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayAdminEndContent.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAdminForm.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayAdminListBefore.md | 4 ++-- .../hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayAdminOptions.md | 4 ++-- .../list-of-hooks/displayAdminOrderCreateExtraButtons.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md | 2 +- .../hooks/list-of-hooks/displayAdminOrderMainBottom.md | 2 +- .../hooks/list-of-hooks/displayAdminOrderSideBottom.md | 4 ++-- .../hooks/list-of-hooks/displayAdminOrderTabContent.md | 2 +- .../concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md | 2 +- .../list-of-hooks/displayAdminProductsCombinationBottom.md | 2 +- .../concepts/hooks/list-of-hooks/displayAdminProductsExtra.md | 2 +- .../displayAdminProductsMainStepLeftColumnBottom.md | 2 +- .../displayAdminProductsMainStepLeftColumnMiddle.md | 2 +- .../displayAdminProductsMainStepRightColumnBottom.md | 2 +- .../list-of-hooks/displayAdminProductsOptionsStepBottom.md | 2 +- .../hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md | 2 +- .../list-of-hooks/displayAdminProductsPriceStepBottom.md | 2 +- .../list-of-hooks/displayAdminProductsQuantitiesStepBottom.md | 2 +- .../hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md | 2 +- .../list-of-hooks/displayAdminProductsShippingStepBottom.md | 2 +- .../hooks/list-of-hooks/displayAdminStatsGraphEngine.md | 2 +- .../hooks/list-of-hooks/displayAdminStatsGridEngine.md | 2 +- .../hooks/list-of-hooks/displayAdminThemesListAfter.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAdminView.md | 4 ++-- .../hooks/list-of-hooks/displayAfterBodyOpeningTag.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md | 2 +- .../concepts/hooks/list-of-hooks/displayAfterProductThumbs.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md | 2 +- modules/concepts/hooks/list-of-hooks/displayAttributeForm.md | 2 +- .../concepts/hooks/list-of-hooks/displayBackOfficeCategory.md | 2 +- .../hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md | 2 +- modules/concepts/hooks/list-of-hooks/displayBanner.md | 2 +- .../hooks/list-of-hooks/displayBeforeBodyClosingTag.md | 2 +- .../hooks/list-of-hooks/displayCMSDisputeInformation.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md | 4 ++-- .../hooks/list-of-hooks/displayCarrierExtraContent.md | 2 +- .../hooks/list-of-hooks/displayCartExtraProductActions.md | 2 +- .../concepts/hooks/list-of-hooks/displayCartModalContent.md | 2 +- .../concepts/hooks/list-of-hooks/displayCartModalFooter.md | 2 +- .../hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md | 2 +- .../hooks/list-of-hooks/displayCheckoutSubtotalDetails.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md | 2 +- modules/concepts/hooks/list-of-hooks/displayContactContent.md | 2 +- .../concepts/hooks/list-of-hooks/displayContactLeftColumn.md | 2 +- .../concepts/hooks/list-of-hooks/displayContactRightColumn.md | 2 +- .../hooks/list-of-hooks/displayCrossSellingShoppingCart.md | 4 ++-- .../hooks/list-of-hooks/displayCustomerLoginFormAfter.md | 2 +- modules/concepts/hooks/list-of-hooks/displayCustomization.md | 4 ++-- .../hooks/list-of-hooks/displayDashboardToolbarIcons.md | 2 +- .../hooks/list-of-hooks/displayDashboardToolbarTopMenu.md | 2 +- modules/concepts/hooks/list-of-hooks/displayDashboardTop.md | 2 +- .../list-of-hooks/displayEmptyModuleCategoryExtraMessage.md | 2 +- .../concepts/hooks/list-of-hooks/displayExpressCheckout.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayFooterAfter.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayFooterBefore.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md | 4 ++-- .../hooks/list-of-hooks/displayInvoiceLegalFreeText.md | 2 +- modules/concepts/hooks/list-of-hooks/displayMaintenance.md | 2 +- modules/concepts/hooks/list-of-hooks/displayNav1.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayNav2.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md | 2 +- .../hooks/list-of-hooks/displayNewsletterRegistration.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayNotFound.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayOrderConfirmation1.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayOrderConfirmation2.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayOrderPreview.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayOverrideTemplate.md | 2 +- .../concepts/hooks/list-of-hooks/displayPaymentByBinaries.md | 2 +- .../hooks/list-of-hooks/displayPersonalInformationTop.md | 2 +- modules/concepts/hooks/list-of-hooks/displayProductActions.md | 2 +- .../concepts/hooks/list-of-hooks/displayProductListReviews.md | 4 ++-- .../concepts/hooks/list-of-hooks/displayProductPriceBlock.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displayReassurance.md | 4 ++-- modules/concepts/hooks/list-of-hooks/displaySearch.md | 4 ++-- modules/concepts/hooks/list-of-hooks/filterCategoryContent.md | 2 +- .../concepts/hooks/list-of-hooks/filterCmsCategoryContent.md | 2 +- modules/concepts/hooks/list-of-hooks/filterCmsContent.md | 2 +- modules/concepts/hooks/list-of-hooks/filterHtmlContent.md | 2 +- .../concepts/hooks/list-of-hooks/filterManufacturerContent.md | 2 +- modules/concepts/hooks/list-of-hooks/filterProductContent.md | 2 +- modules/concepts/hooks/list-of-hooks/filterProductSearch.md | 2 +- modules/concepts/hooks/list-of-hooks/filterSupplierContent.md | 2 +- modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md | 4 ++-- modules/concepts/hooks/list-of-hooks/legacyblockkpi.md | 4 ++-- modules/concepts/hooks/list-of-hooks/moduleRoutes.md | 4 ++-- .../concepts/hooks/list-of-hooks/overrideLayoutTemplate.md | 4 ++-- .../hooks/list-of-hooks/overrideMinimalPurchasePrice.md | 4 ++-- modules/concepts/hooks/list-of-hooks/productSearchProvider.md | 4 ++-- .../concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md | 2 +- modules/concepts/hooks/list-of-hooks/termsAndConditions.md | 4 ++-- .../hooks/list-of-hooks/validateCustomerFormFields.md | 2 +- 299 files changed, 455 insertions(+), 454 deletions(-) diff --git a/modules/concepts/hooks/list-of-hooks/actionAfter.md b/modules/concepts/hooks/list-of-hooks/actionAfter.md index fa7d22ed56..9b96ad55dc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAfter Title: actionAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionBefore.md b/modules/concepts/hooks/list-of-hooks/actionBefore.md index 96b986e807..9c09798224 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionBefore.md @@ -2,7 +2,7 @@ menuTitle: actionBefore Title: actionBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFormModifier.md b/modules/concepts/hooks/list-of-hooks/actionFormModifier.md index 324980dfba..b1ffe432aa 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormModifier.md @@ -2,7 +2,7 @@ menuTitle: actionFormModifier Title: actionFormModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md index 9b2fd08897..5b317d87b6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md @@ -2,7 +2,7 @@ menuTitle: actionListingFieldsModifier Title: actionListingFieldsModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md index 3a956d9abc..b7e452f87f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md @@ -2,7 +2,7 @@ menuTitle: actionListingResultsModifier Title: actionListingResultsModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md b/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md index c18d12b6dd..c9da7a68a6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md @@ -2,7 +2,7 @@ menuTitle: actionOptionsModifier Title: actionOptionsModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md index 3fb72fb0aa..e597efb4d2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md @@ -2,7 +2,7 @@ menuTitle: actionGridDataModifier Title: actionGridDataModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/GridFactory.php' @@ -11,7 +11,7 @@ locations: - 'front office' - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md index 922e038f6b..bacb905310 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md @@ -2,7 +2,7 @@ menuTitle: actionGridDefinitionModifier Title: actionGridDefinitionModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Definition/Factory/AbstractGridDefinitionFactory.php' @@ -11,7 +11,7 @@ locations: - 'front office' - 'back office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md index 1f16972b2c..1c5ea80ae5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md @@ -2,7 +2,7 @@ menuTitle: actionGridFilterFormModifier Title: actionGridFilterFormModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Filter/GridFilterFormFactory.php' @@ -11,7 +11,7 @@ locations: - 'front office' - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md index b381d9e9ba..2d84202b9a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md @@ -2,7 +2,7 @@ menuTitle: actionGridPresenterModifier Title: actionGridPresenterModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Presenter/GridPresenter.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md index 10d957703d..c6a702b918 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md @@ -2,7 +2,7 @@ menuTitle: actionGridQueryBuilderModifier Title: actionGridQueryBuilderModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Grid/Data/Factory/DoctrineGridDataFactory.php' @@ -11,7 +11,7 @@ locations: - 'front office' - 'back office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md b/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md index 5250a44fba..663301cadc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md @@ -2,7 +2,7 @@ menuTitle: 'action<FormName>FormBuilderModifier' Title: actionFormBuilderModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php' @@ -11,7 +11,7 @@ locations: - 'front office' - 'back office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md index bae10c556c..88415f7848 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md @@ -2,7 +2,7 @@ menuTitle: actionFormDataProviderData Title: actionFormDataProviderData hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php' @@ -11,7 +11,7 @@ locations: - 'front office' - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md index 7349be39a1..1e312041e6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md @@ -2,7 +2,7 @@ menuTitle: actionFormDataProviderDefaultData Title: actionFormDataProviderDefaultData hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Builder/FormBuilder.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md index 524854ae17..9f76ef0ae4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md @@ -2,7 +2,7 @@ menuTitle: actionListingFieldsModifier Title: actionListingFieldsModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md index 6a99237a42..654c9bbc33 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md @@ -2,7 +2,7 @@ menuTitle: actionListingResultsModifier Title: actionListingResultsModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/Helper/Listing/HelperBridge/HelperListBridge.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md index fd2f7afd3a..47bcc85f94 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminAfter Title: actionAdminAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md index ad27ea45d7..3c583e0dc8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminBefore Title: actionAdminBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/AdminController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md index 27095fa7ab..2e4cefc00c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminActivateAfter Title: actionAdminActivateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md index 9f2b79708b..61c5f16358 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminActivateBefore Title: actionAdminActivateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md index a3158ed8f2..a13e3c1b6c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md index 01ce578629..38e31d27f9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminAdminWebserviceControllerPostProcessBefore Title: actionAdminAdminWebserviceControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/WebserviceController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md index 83ace81c4f..bdef1f282e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminAdministrationControllerPostProcessBefore Title: actionAdminAdministrationControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/AdministrationController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md index c8b91b2970..1ef3c0f559 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md index fd0f643ffd..84dc6475cb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore Title: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/PerformanceController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md index 75b0cc9b29..3b7b4a16c5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md index 2dd2cca6ab..25acf1124e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md index 8520c35755..e14cee37cf 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md index 38df087ea6..923dc07921 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md @@ -2,7 +2,7 @@ menuTitle: actionAdminControllerSetMedia Title: actionAdminControllerSetMedia hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Bridge/AdminController/LegacyControllerBridge.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md index cf608aaa17..5e3f71df29 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminDeactivateAfter Title: actionAdminDeactivateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md index b3adb14a8f..cb1eb47ba2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminDeactivateBefore Title: actionAdminDeactivateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md index 4cf4005fb5..2f02e85953 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminDeleteAfter Title: actionAdminDeleteAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md index 0bb42a1d93..5909df649f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminDeleteBefore Title: actionAdminDeleteBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md index ced3c43f4f..a9b7954a37 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminDuplicateAfter Title: actionAdminDuplicateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md index 6877eb379e..7e9eb0b54b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminDuplicateBefore Title: actionAdminDuplicateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md index 958758475a..b5acd12060 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminInternationalGeolocationControllerPostProcessBefore Title: actionAdminInternationalGeolocationControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/GeolocationController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md index 3c56c87776..819b7e02e9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md index 3dc8c9d249..de288401d2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminInternationalLocalizationControllerPostProcessBefore Title: actionAdminInternationalLocalizationControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Improve/International/LocalizationController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md index 3a6a13a18f..1f9906034d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md index 296668cc24..bce99fffa1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md index 6cf49ebab3..b3e1d43ef4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md index ccb095109d..06c81591a9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md index 640b28cb71..8a3dc4f890 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md index 276b45502b..b57266b11d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md index 49baba2330..de2f6d984e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md index ef630984bd..d43e318c4e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md index dd4c29c0b7..345f5ecea0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md index 044e82c1fb..046fab0cf8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminLogsControllerPostProcessBefore Title: actionAdminLogsControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/AdvancedParameters/LogsController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md index 93af650679..e81cbb07ca 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminMaintenanceControllerPostProcessBefore Title: actionAdminMaintenanceControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MaintenanceController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md index 49e7949b32..dd95c5104b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md @@ -2,7 +2,7 @@ menuTitle: actionAdminMetaAfterWriteRobotsFile Title: actionAdminMetaAfterWriteRobotsFile hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md index 908c9c4f29..96036b6dca 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md @@ -2,7 +2,7 @@ menuTitle: actionAdminMetaBeforeWriteRobotsFile Title: actionAdminMetaBeforeWriteRobotsFile hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Tools.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md b/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md index a494efd442..a6bef22d89 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md index ee75c19092..91f8a672d6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminPreferencesControllerPostProcessBefore Title: actionAdminPreferencesControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/PreferencesController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md index 807e2f7762..32bae1d36f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerActivateAfter Title: actionAdminProductsControllerActivateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md index 06ac727cfc..772af171c1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerActivateBefore Title: actionAdminProductsControllerActivateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md index 992865b7c4..12aa02f9b6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerDeactivateAfter Title: actionAdminProductsControllerDeactivateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md index 57e8279545..1548fe1b77 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerDeactivateBefore Title: actionAdminProductsControllerDeactivateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md index 522e63e19a..2add514f3b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerDeleteAfter Title: actionAdminProductsControllerDeleteAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md index e0d16d564e..e8c7250b89 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerDeleteBefore Title: actionAdminProductsControllerDeleteBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md index c5312b84b1..e13b29dd4b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerDuplicateAfter Title: actionAdminProductsControllerDuplicateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md index 9cd278c936..67f60517db 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerDuplicateBefore Title: actionAdminProductsControllerDuplicateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md index 77e248a99b..7af26e048d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerSortAfter Title: actionAdminProductsControllerSortAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md index eedbddaac8..ef8d964eb7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsControllerSortBefore Title: actionAdminProductsControllerSortBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md index 07bb7a7aae..a729434c12 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsListingFieldsModifier Title: actionAdminProductsListingFieldsModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataProvider.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md index b160e8f164..f8a76bdb59 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md @@ -2,7 +2,7 @@ menuTitle: actionAdminProductsListingResultsModifier Title: actionAdminProductsListingResultsModifier hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataProvider.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md index de2497b0d8..1c405dd57b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md index 11065ccc92..7176fadbdd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md index 9e258d19c5..a8adadfb87 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md index 54032c5ea3..1c0a4cd819 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md index 3c463e4b35..0c48bb96b4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminShopParametersMetaControllerPostProcessBefore Title: actionAdminShopParametersMetaControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/MetaController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md index ad62c30e0a..50dcb4136b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore Title: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/OrderPreferencesController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md index 7157cebac8..f169515f3c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md index 0978385b30..f278aa5a2f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminShopParametersProductPreferencesControllerPostProcessBefore Title: actionAdminShopParametersProductPreferencesControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md index d0e09ff2b1..210d78c4c5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminShopParametersProductPreferencesControllerPostProcessBefore Title: actionAdminShopParametersProductPreferencesControllerPostProcessBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/Configure/ShopParameters/ProductPreferencesController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md index cd77b53e0f..3769e67ab2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminSortAfter Title: actionAdminSortAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md index 4551e65f5f..d1d1afb50f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAdminSortBefore Title: actionAdminSortBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Controller/Admin/ProductController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md index df974d11cd..3547e86711 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md @@ -2,7 +2,7 @@ menuTitle: actionAdminThemesControllerUpdateoptionsAfter Title: actionAdminThemesControllerUpdateoptionsAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Shop/CommandHandler/UploadLogosHandler.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md index 885b546651..1a43e52a3e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md @@ -2,7 +2,7 @@ menuTitle: actionAfterCreateFormHandler Title: actionAfterCreateFormHandler hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md index 218150efc6..c82b56fa41 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md @@ -2,7 +2,7 @@ menuTitle: actionAfterUpdateFormHandler Title: actionAfterUpdateFormHandler hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index 125a55b600..f67afdf055 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAjaxDieBefore Title: actionAjaxDieBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index 351ba83aa1..157747048c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAjaxDieBefore Title: actionAjaxDieBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md index 7af486453f..c73ae94224 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md @@ -2,7 +2,7 @@ menuTitle: actionAttributeCombinationDelete Title: actionAttributeCombinationDelete hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Combination.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md index 2b895ff210..0f913c211b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md @@ -2,7 +2,7 @@ menuTitle: actionAttributeCombinationSave Title: actionAttributeCombinationSave hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Combination.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md index 24e5d15831..70cd2b4223 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md @@ -2,7 +2,7 @@ menuTitle: actionAuthenticationBefore Title: actionAuthenticationBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerLoginForm.php' diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md b/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md index 416f2e89ad..0b4ca781df 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md @@ -2,7 +2,7 @@ menuTitle: actionBeforeAjaxDie Title: actionBeforeAjaxDie hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/Controller.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md index 1c6235af7b..833a3215e1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md @@ -2,7 +2,7 @@ menuTitle: actionBeforeCreateFormHandler Title: actionBeforeCreateFormHandler hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md index 62b6e180e9..bb94fd0d40 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md @@ -2,7 +2,7 @@ menuTitle: actionBeforeUpdateFormHandler Title: actionBeforeUpdateFormHandler hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Core/Form/IdentifiableObject/Handler/FormHandler.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md b/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md index 70e8391e09..ce3f2deb5a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md +++ b/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md b/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md index 917235dcf2..26f2c0b5b6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md +++ b/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionCartSummary.md b/modules/concepts/hooks/list-of-hooks/actionCartSummary.md index 63a571b028..1b13c7a2d8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartSummary.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartSummary.md @@ -2,7 +2,7 @@ menuTitle: actionCartSummary Title: actionCartSummary hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md index 775aaf98f2..3b62bc6a17 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md @@ -2,7 +2,7 @@ menuTitle: actionCartUpdateQuantityBefore Title: actionCartUpdateQuantityBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Cart.php' diff --git a/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md b/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md index 27310a99c9..1cf4b92702 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md +++ b/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionClearCache.md b/modules/concepts/hooks/list-of-hooks/actionClearCache.md index 824e5b51cc..80a4dcb68d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearCache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearCache.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md b/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md index af8e1e2909..15f44c9bc9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md b/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md index 5cb44d24ff..d940927209 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md index aedef9e9c6..868a4fea2a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md index eeebafd63e..4d18218891 100644 --- a/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md index 407e44f133..93cf210e5d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md index 75b657a749..2457a9544c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md @@ -2,7 +2,7 @@ menuTitle: actionCustomerAddGroups Title: actionCustomerAddGroups hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md b/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md index f72e1532ad..e5fd35e6e1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md @@ -2,7 +2,7 @@ menuTitle: actionCustomerBeforeUpdateGroup Title: actionCustomerBeforeUpdateGroup hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Customer.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md index f7642057f2..602203b3a0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md index 1fc7b1462c..e98add4fce 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md index 71f38249e4..b82eafb767 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md @@ -2,7 +2,7 @@ menuTitle: actionDeleteGDPRCustomer Title: actionDeleteGDPRCustomer hidden: true -hookTitle: null +hookTitle: files: - module: psgdpr @@ -11,7 +11,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md index a95b141643..d7733787d2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md @@ -2,7 +2,7 @@ menuTitle: actionDeliveryPriceByPrice Title: actionDeliveryPriceByPrice hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Carrier.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md index 46238d68e9..28098e79d2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md @@ -2,7 +2,7 @@ menuTitle: actionDeliveryPriceByWeight Title: actionDeliveryPriceByWeight hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Carrier.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcher.md b/modules/concepts/hooks/list-of-hooks/actionDispatcher.md index fb70be7d66..5c5e0279cc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcher.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcher.md @@ -2,7 +2,7 @@ menuTitle: actionDispatcher Title: actionDispatcher hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Dispatcher.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md b/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md index 7b57046105..1a73445198 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md b/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md index f83cb85735..5f44817785 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md b/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md index 8eb05a132b..11c88e5972 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md +++ b/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md @@ -2,7 +2,7 @@ menuTitle: actionDownloadAttachment Title: actionDownloadAttachment hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/AttachmentController.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md b/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md index 2b2180202b..1b923e9f95 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md b/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md index 9c204b8f71..c177d7e807 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md b/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md index b5a595d627..d5444542e6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md index 703ea1d97d..4f364d18cb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md +++ b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md @@ -2,7 +2,7 @@ menuTitle: actionExportGDPRData Title: actionExportGDPRData hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/psgdpr/psgdpr.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: 'Hook origin': module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md b/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md index f6ad72fdee..8c3844d1c1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md +++ b/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md index 67e0abf6ac..a93e76dd8b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md index 21f5ecc9cc..723e374e35 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md @@ -2,7 +2,7 @@ menuTitle: actionFrontControllerSetMedia Title: actionFrontControllerSetMedia hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md index eb91f018f0..16f038cadb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md b/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md index bd62ad64f5..080931c831 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md +++ b/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md b/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md index d465084593..9777bdca29 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md b/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md index aa359a6883..1a70d00371 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md b/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md index dde6355ddc..f3516e23a9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md b/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md index 75d7a12846..1804aea8a3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md @@ -2,7 +2,7 @@ menuTitle: actionGetExtraMailTemplateVars Title: actionGetExtraMailTemplateVars hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md b/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md index 867e0373bc..7f9f662aa2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md @@ -2,7 +2,7 @@ menuTitle: actionGetIDZoneByAddressID Title: actionGetIDZoneByAddressID hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Address.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md b/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md index 71c6db44b8..026777a756 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md index 75467b5dec..ef1f579693 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md @@ -2,7 +2,7 @@ menuTitle: actionGetProductPropertiesAfter Title: actionGetProductPropertiesAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md index ad75c9971f..fdd003603a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md index 63141ccda1..faa3d71972 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md @@ -2,7 +2,7 @@ menuTitle: actionGetProductPropertiesBefore Title: actionGetProductPropertiesBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md b/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md index 482b60c0db..8af1575aee 100644 --- a/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md +++ b/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md @@ -2,7 +2,7 @@ menuTitle: actionInvoiceNumberFormatted Title: actionInvoiceNumberFormatted hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderInvoice.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md b/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md index 347f308c60..8a5a7db4c5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md +++ b/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionListModules.md b/modules/concepts/hooks/list-of-hooks/actionListModules.md index b337f5fbf5..e7e485777a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListModules.md +++ b/modules/concepts/hooks/list-of-hooks/actionListModules.md @@ -7,7 +7,7 @@ files: { } locations: - 'back office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md b/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md index debd9e55c6..b3616593cf 100644 --- a/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md +++ b/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md @@ -8,7 +8,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md b/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md index 4407fac5e9..8338af385b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md +++ b/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md @@ -2,7 +2,7 @@ menuTitle: actionMailAlterMessageBeforeSend Title: actionMailAlterMessageBeforeSend hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Mail.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md b/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md index 31934436a8..c4028cc12c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md +++ b/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md index 04c9ac1d08..6e231271ff 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md index 0bed7bab2e..c684835abd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md index 725fa33716..7b5fddd436 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md @@ -2,7 +2,7 @@ menuTitle: actionModuleMailAlertSendCustomer Title: actionModuleMailAlertSendCustomer hidden: true -hookTitle: null +hookTitle: files: - module: ps_emailalerts @@ -11,7 +11,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md index cef5228ff5..b047eab3ad 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md @@ -2,7 +2,7 @@ menuTitle: actionModuleRegisterHookAfter Title: actionModuleRegisterHookAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md index 35aee78b4e..82c9ff734c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md @@ -2,7 +2,7 @@ menuTitle: actionModuleRegisterHookBefore Title: actionModuleRegisterHookBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md index bfc239bfac..ece3f53868 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md @@ -2,7 +2,7 @@ menuTitle: actionModuleUnRegisterHookAfter Title: actionModuleUnRegisterHookAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md index d60cfbb5a8..eeee8215a8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md @@ -2,7 +2,7 @@ menuTitle: actionModuleUnRegisterHookBefore Title: actionModuleUnRegisterHookBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Hook.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md index 48c5157051..7e70a22268 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md index b5f8fb4d80..1f12816ef4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md index a9e97af597..788b9f71f4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md @@ -2,7 +2,7 @@ menuTitle: actionNewsletterRegistrationAfter Title: actionNewsletterRegistrationAfter hidden: true -hookTitle: null +hookTitle: files: - module: ps_emailsubscription @@ -11,7 +11,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md index 5a39ee7725..488891e039 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md @@ -2,7 +2,7 @@ menuTitle: actionNewsletterRegistrationBefore Title: actionNewsletterRegistrationBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/ps_emailsubscription/blob/master/ps_emailsubscription.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md index b03cbf12c1..849be7bdf9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md @@ -2,7 +2,7 @@ menuTitle: actionObjectAddAfter Title: actionObjectAddAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md index 9673d10b01..2b4115246c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectAddBefore Title: actionObjectAddBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md index 1590fc97eb..db85cd2740 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md @@ -2,7 +2,7 @@ menuTitle: actionObjectDeleteAfter Title: actionObjectDeleteAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md index 26e1b8ca98..48ecb10f31 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectDeleteBefore Title: actionObjectDeleteBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md index cddb690906..b433e9187e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionObjectUpdateAfter Title: actionObjectUpdateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md index 786de89955..77e845cb56 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectUpdateBefore Title: actionObjectUpdateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md index be8d78158d..ae5b612343 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md @@ -2,7 +2,7 @@ menuTitle: actionObjectAddAfter Title: actionObjectAddAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md index 02b3363b3f..abbfe2cb3c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectAddBefore Title: actionObjectAddBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md index 2149303c9e..5542f3d040 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectAttributeAddBefore Title: actionObjectAttributeAddBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminAttributesGroupsController.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md index 80c41a7c39..c93a3decde 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectAttributeGroupAddBefore Title: actionObjectAttributeGroupAddBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminAttributesGroupsController.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md index e722339779..2091fa5653 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md @@ -2,7 +2,7 @@ menuTitle: actionObjectDeleteAfter Title: actionObjectDeleteAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md index 623fd5dad9..1c9025e02a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectDeleteBefore Title: actionObjectDeleteBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md index 0e2fc7586b..036123a306 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionObjectProductCommentValidateAfter Title: actionObjectProductCommentValidateAfter hidden: true -hookTitle: null +hookTitle: files: - module: productcomments @@ -12,7 +12,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: origin: module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md index 96ef7dac27..3fff006b97 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md index 85acfc9a49..ae2eaea031 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md index 5b008ee80f..de66a75f38 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md @@ -2,7 +2,7 @@ menuTitle: actionObjectUpdateAfter Title: actionObjectUpdateAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md index 4ec7f755ca..69f727bf5a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md @@ -2,7 +2,7 @@ menuTitle: actionObjectUpdateBefore Title: actionObjectUpdateBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ObjectModel.php' @@ -11,7 +11,7 @@ locations: - 'back office' - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md b/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md index 0fa2f1e3a4..33ffc95cd5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md @@ -2,7 +2,7 @@ menuTitle: actionOnImageCutAfter Title: actionOnImageCutAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ImageManager.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md b/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md index 83d9fdcf71..8dc2479ee5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md @@ -2,7 +2,7 @@ menuTitle: actionOnImageResizeAfter Title: actionOnImageResizeAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/ImageManager.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md b/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md index 0a111b3b67..b78a1ae1dd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md index 8f72b0e560..d631c4941b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md @@ -2,7 +2,7 @@ menuTitle: actionOrderHistoryAddAfter Title: actionOrderHistoryAddAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/OrderHistory.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md b/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md index 117bb63512..4660939032 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md b/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md index 29a16b454d..7e074cbad2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md +++ b/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md b/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md index 947e3583ff..499060cdab 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md +++ b/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md @@ -2,7 +2,7 @@ menuTitle: actionPDFInvoiceRender Title: actionPDFInvoiceRender hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/PDF/OrderInvoicePdfGenerator.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md b/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md index f75509f756..31f8aeb7b1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md +++ b/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md @@ -2,7 +2,7 @@ menuTitle: actionPasswordRenew Title: actionPasswordRenew hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/PasswordController.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentCart.md b/modules/concepts/hooks/list-of-hooks/actionPresentCart.md index 8b3876c8fd..1f32da436a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentCart.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentCart.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentModule.md b/modules/concepts/hooks/list-of-hooks/actionPresentModule.md index 45f7adc670..872c6d3075 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentModule.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentModule.md @@ -2,7 +2,7 @@ menuTitle: actionPresentModule Title: actionPresentModule hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Module/ModulePresenter.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md b/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md index fd9b4199ce..638f1c8063 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md b/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md index a6f21074a4..7c0d7503d2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md b/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md index 543be96014..016bfc9ae0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md b/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md index ec1de7c5f4..4dd1cd5000 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md b/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md index dc4c5f716e..1eff5aec37 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionProductActivation.md b/modules/concepts/hooks/list-of-hooks/actionProductActivation.md index 70df854864..9ef70c1d36 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductActivation.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductActivation.md @@ -2,7 +2,7 @@ menuTitle: actionProductActivation Title: actionProductActivation hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Product/AdminProductDataUpdater.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md b/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md index da3d978c73..9bc88b0d94 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md @@ -2,7 +2,7 @@ menuTitle: actionProductCoverage Title: actionProductCoverage hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/stock/StockManager.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md index 36f5d78c40..9de7ab938d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md @@ -5,6 +5,7 @@ hidden: true hookTitle: 'Out-of-stock product' files: - + theme: Classic url: 'https://github.com/PrestaShop/classic-theme/blob/develop/templates/catalog/_partials/product-details.tpl' file: 'Classic Theme: templates/catalog/_partials/product-details.tpl' locations: diff --git a/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md b/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md index b4b2b38b3c..4c00d7ce5c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md index 46a4b2e67d..7a7b06e39f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md index 08db73dd24..1ee90cf563 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md index d191d75cf2..0236f52f46 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionSearch.md b/modules/concepts/hooks/list-of-hooks/actionSearch.md index c857b24020..3c35290e07 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSearch.md +++ b/modules/concepts/hooks/list-of-hooks/actionSearch.md @@ -2,7 +2,7 @@ menuTitle: actionSearch Title: actionSearch hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Search/SearchProductSearchProvider.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md b/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md index 96c1d8e9df..e38dfbe34e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md +++ b/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md @@ -2,7 +2,7 @@ menuTitle: actionSetInvoice Title: actionSetInvoice hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/order/Order.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md b/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md index a856511ee2..117210a16d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md +++ b/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md @@ -2,7 +2,7 @@ menuTitle: actionShopDataDuplication Title: actionShopDataDuplication hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/shop/Shop.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md index d36cc0211a..d5402c1ecf 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md @@ -2,7 +2,7 @@ menuTitle: actionSubmitAccountBefore Title: actionSubmitAccountBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/front/RegistrationController.php' diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md b/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md index 463b05f94f..02a215d3ba 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md @@ -2,7 +2,7 @@ menuTitle: actionSubmitCustomerAddressForm Title: actionSubmitCustomerAddressForm hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/form/CustomerAddressForm.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md b/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md index 85caf272b7..03f83ed56a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md b/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md index 5f5caa9d25..424ca0e3c7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md index 963e767162..d089b017f1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md b/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md index f44b1fd7d3..a050ee4d33 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md @@ -2,7 +2,7 @@ menuTitle: actionValidateStepComplete Title: actionValidateStepComplete hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/CheckoutDeliveryStep.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md index 8e4e70ffdc..b2fa82ae4d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md @@ -2,7 +2,7 @@ menuTitle: actionWishlistAddProduct Title: actionWishlistAddProduct hidden: true -hookTitle: null +hookTitle: files: - module: blockwishlist @@ -11,7 +11,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: module array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md b/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md index b15ff71a83..6a90f5a9f2 100644 --- a/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md +++ b/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: true chain: false diff --git a/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md index 4474484f5b..4c4f6b1325 100644 --- a/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md b/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md index b07a2f5484..80e4587ffd 100644 --- a/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md +++ b/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/dashboardData.md b/modules/concepts/hooks/list-of-hooks/dashboardData.md index 6f44dc7df4..7ead501547 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardData.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardData.md @@ -2,7 +2,7 @@ menuTitle: dashboardData Title: dashboardData hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md index cedb4aecc9..93cfe89d17 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md @@ -2,7 +2,7 @@ menuTitle: dashboardZoneOne Title: dashboardZoneOne hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md index f65dee9bc4..eb55e8de0c 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md index 2fb93af302..1ff836cff4 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md @@ -2,7 +2,7 @@ menuTitle: dashboardZoneTwo Title: dashboardZoneTwo hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/controllers/admin/AdminDashboardController.php' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md b/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md index 17051d042f..d79abb1672 100644 --- a/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md +++ b/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md @@ -2,7 +2,7 @@ menuTitle: deleteProductAttribute Title: deleteProductAttribute hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md index 1540d9371c..56e8c70046 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md index 23d7045f82..4b6fafa990 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md @@ -2,7 +2,7 @@ menuTitle: displayAddressSelectorBottom Title: displayAddressSelectorBottom hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: since: 8.1.0 origin: theme array_return: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md b/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md index 50fc4c219e..1ece151fe2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md @@ -2,7 +2,7 @@ menuTitle: displayAdminAfterHeader Title: displayAdminAfterHeader hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/light_display_layout.tpl' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md b/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md index 17fcc0f5bc..1334e75340 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminForm.md b/modules/concepts/hooks/list-of-hooks/displayAdminForm.md index 1ccf8f9141..cfe65e1493 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminForm.md @@ -2,7 +2,7 @@ menuTitle: displayAdminForm Title: displayAdminForm hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/form/form.tpl' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md index db3b8d1d17..47551aff3b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md @@ -2,7 +2,7 @@ menuTitle: displayAdminListAfter Title: displayAdminListAfter hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/list/list_footer.tpl' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md b/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md index 5f0c447072..93aacb9a72 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md @@ -2,7 +2,7 @@ menuTitle: displayAdminListBefore Title: displayAdminListBefore hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/list/list_header.tpl' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md b/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md index 6695a6efdf..95cc723764 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md @@ -2,7 +2,7 @@ menuTitle: displayAdminNavBarBeforeEnd Title: displayAdminNavBarBeforeEnd hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/new-theme/template/components/layout/nav_bar.tpl' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md b/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md index 1073d32e52..87f96eb423 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md @@ -2,7 +2,7 @@ menuTitle: displayAdminOptions Title: displayAdminOptions hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/options/options.tpl' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md index fde8ab844f..2833612efb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md index 695769f07d..4c16d14156 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md index 81d571dd99..033092ee25 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md index 6c21c71f18..36aa9f0d2d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md @@ -2,7 +2,7 @@ menuTitle: displayAdminOrderSideBottom Title: displayAdminOrderSideBottom hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/view.html.twig' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md index 3e8c285e75..b5090c9692 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md index a55d4b6940..e830ddec39 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md index 52231dae9d..a6c6eb8d36 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md index 80604d519f..b55ae3ccee 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md index c278c5bd53..ac784ad9cc 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md index 738cfb8714..cd470b2839 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md index ef1d15e1df..3cc493dc29 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md index 516dab5ba9..856cad0a6b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md index b07c717cdc..2efca3440f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md index b286edb0f6..670e15288d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md index 9e99feee03..1de8ada642 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md index ae06aa272c..d0f0cfc15b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: hasExample: true array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md index aaee195728..3e216481d4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md index 74d9918337..95f320eb07 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md index d988a7367d..6e6f8dfbbf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md @@ -2,7 +2,7 @@ menuTitle: displayAdminStatsGraphEngine Title: displayAdminStatsGraphEngine hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGraph.php' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md index 7baad2294e..d838d1b70a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md @@ -2,7 +2,7 @@ menuTitle: displayAdminStatsGridEngine Title: displayAdminStatsGridEngine hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/module/ModuleGridEngine.php' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md index 9ade9c0c2d..85aa18e65c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminView.md b/modules/concepts/hooks/list-of-hooks/displayAdminView.md index 3d0fb20030..0d195b4178 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminView.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminView.md @@ -2,7 +2,7 @@ menuTitle: displayAdminView Title: displayAdminView hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/helpers/view/view.tpl' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md index f3259ef2a0..d181b6c7bc 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md @@ -12,7 +12,7 @@ locations: - 'front office' type: display origin: theme -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md b/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md index 5a77f22061..8941577834 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md index 9f0296f6cd..a634b9ef72 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md index 89cc57f8b0..b410ceadd8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md index 666dca982d..68d3f9a9ca 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md @@ -2,7 +2,7 @@ menuTitle: displayAttributeForm Title: displayAttributeForm hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/admin-dev/themes/default/template/controllers/attributes/helpers/form/form.tpl' diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md index 5b390f3faf..7e64079420 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md index 3f2cabe3a1..387f0154c3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayBanner.md b/modules/concepts/hooks/list-of-hooks/displayBanner.md index cce740a900..362e20b4d8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBanner.md +++ b/modules/concepts/hooks/list-of-hooks/displayBanner.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md index 3572444634..ae12b03b5a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md index 674a717bf2..52c5a43aa1 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md @@ -2,7 +2,7 @@ menuTitle: displayCMSDisputeInformation Title: displayCMSDisputeInformation hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md index d77d9df0c3..9c6886314f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md @@ -2,7 +2,7 @@ menuTitle: displayCMSPrintButton Title: displayCMSPrintButton hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md b/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md index 1c41a4dbd2..8613fa149b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md index 1efd1d74eb..838cb3e810 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md index 8504ffeeff..1d48b19a0e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md index a2bfb6d74d..63e9a54aaf 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md index 778f14aaa3..e5e48627a8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md index 5b077bc29b..eac1877bb3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md @@ -2,7 +2,7 @@ menuTitle: displayCheckoutSubtotalDetails Title: displayCheckoutSubtotalDetails hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md index 2212ebf7bb..edc53ffb12 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayContactContent.md b/modules/concepts/hooks/list-of-hooks/displayContactContent.md index 08bd57a40c..fbac0ce0d2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactContent.md @@ -15,7 +15,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md index 654bf2a138..b5d3d5491c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md @@ -15,7 +15,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md index 8fdb83fd42..418885f2f5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md @@ -15,7 +15,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md index b2a14f4122..4bcf8f7698 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md @@ -2,7 +2,7 @@ menuTitle: displayCrossSellingShoppingCart Title: displayCrossSellingShoppingCart hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md index 56cda9b3bc..edddb700d9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomization.md b/modules/concepts/hooks/list-of-hooks/displayCustomization.md index 6f67e83fb3..9fc6e6c360 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomization.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomization.md @@ -2,7 +2,7 @@ menuTitle: displayCustomization Title: displayCustomization hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Product.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md index 2242c19c12..2d214ae5cd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md index eee29529b5..8353efb451 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md b/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md index eae634ea07..1e3cdca7e9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md b/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md index c6b498a37d..1aaa58acc9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md +++ b/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md index dda690f18f..7f450ebe9c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md +++ b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md @@ -2,7 +2,7 @@ menuTitle: displayExpressCheckout Title: displayExpressCheckout hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md index a19d829033..d9d18f653e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md @@ -2,7 +2,7 @@ menuTitle: displayFooterAfter Title: displayFooterAfter hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md index 816ee31239..727c194f81 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md @@ -2,7 +2,7 @@ menuTitle: displayFooterBefore Title: displayFooterBefore hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: hasExample: true origin: theme array_return: false diff --git a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md index 1b2e4cfea9..465c3814a8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md +++ b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md @@ -2,7 +2,7 @@ menuTitle: displayGDPRConsent Title: displayGDPRConsent hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md b/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md index 446253b8b2..5064764cfd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md +++ b/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayMaintenance.md b/modules/concepts/hooks/list-of-hooks/displayMaintenance.md index 0826443e0d..2c79334e56 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMaintenance.md +++ b/modules/concepts/hooks/list-of-hooks/displayMaintenance.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayNav1.md b/modules/concepts/hooks/list-of-hooks/displayNav1.md index ccf7de18f1..4ccb9e534b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav1.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav1.md @@ -2,7 +2,7 @@ menuTitle: displayNav1 Title: displayNav1 hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayNav2.md b/modules/concepts/hooks/list-of-hooks/displayNav2.md index 5f0dbb42b9..8f14bd9959 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav2.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav2.md @@ -2,7 +2,7 @@ menuTitle: displayNav2 Title: displayNav2 hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md index 8213f26fbf..bb20ec94a4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md +++ b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md index cc28ce6c52..3c620e3a2e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md +++ b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md @@ -2,7 +2,7 @@ menuTitle: displayNewsletterRegistration Title: displayNewsletterRegistration hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayNotFound.md b/modules/concepts/hooks/list-of-hooks/displayNotFound.md index ebdee531cb..876776a094 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNotFound.md +++ b/modules/concepts/hooks/list-of-hooks/displayNotFound.md @@ -2,7 +2,7 @@ menuTitle: displayNotFound Title: displayNotFound hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md index f17ec8392d..0791c88d55 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md @@ -2,7 +2,7 @@ menuTitle: displayOrderConfirmation1 Title: displayOrderConfirmation1 hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md index cd7e8937cf..2df9bed8dd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md @@ -2,7 +2,7 @@ menuTitle: displayOrderConfirmation2 Title: displayOrderConfirmation2 hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md b/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md index 2b805825e5..7318a3014e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md @@ -2,7 +2,7 @@ menuTitle: displayOrderPreview Title: displayOrderPreview hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/preview.html.twig' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md b/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md index 3e1ad876b3..58f9778427 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md +++ b/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md index 61b8f561dd..1a6b24f4ea 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md index d3c9d63e08..4afa776a8b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayProductActions.md b/modules/concepts/hooks/list-of-hooks/displayProductActions.md index ca7d39bf79..e2466d2a58 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductActions.md @@ -11,7 +11,7 @@ files: locations: - 'front office' type: action -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md index 2912e2d22c..d9246d8a99 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md @@ -2,7 +2,7 @@ menuTitle: displayProductListReviews Title: displayProductListReviews hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md index 15224c6ab7..4792338335 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md @@ -2,7 +2,7 @@ menuTitle: displayProductPriceBlock Title: displayProductPriceBlock hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displayReassurance.md b/modules/concepts/hooks/list-of-hooks/displayReassurance.md index a5382516bf..8911a7600a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayReassurance.md +++ b/modules/concepts/hooks/list-of-hooks/displayReassurance.md @@ -2,7 +2,7 @@ menuTitle: displayReassurance Title: displayReassurance hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/displaySearch.md b/modules/concepts/hooks/list-of-hooks/displaySearch.md index abaa66ea0c..1103880a2e 100644 --- a/modules/concepts/hooks/list-of-hooks/displaySearch.md +++ b/modules/concepts/hooks/list-of-hooks/displaySearch.md @@ -2,7 +2,7 @@ menuTitle: displaySearch Title: displaySearch hidden: true -hookTitle: null +hookTitle: files: - theme: Classic @@ -11,7 +11,7 @@ files: locations: - 'front office' type: display -hookAliases: null +hookAliases: origin: theme array_return: false check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md b/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md index 9e1a8a4b55..93e6f17fc6 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: true diff --git a/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md b/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md index d0df77ec2e..ad0d0da8be 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: true diff --git a/modules/concepts/hooks/list-of-hooks/filterCmsContent.md b/modules/concepts/hooks/list-of-hooks/filterCmsContent.md index 13ce41cd14..ddacccf54e 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCmsContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCmsContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: true diff --git a/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md b/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md index 23d906fbe6..f1ad3a49bb 100644 --- a/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: true diff --git a/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md b/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md index 79dae44d43..befb8885c4 100644 --- a/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: true diff --git a/modules/concepts/hooks/list-of-hooks/filterProductContent.md b/modules/concepts/hooks/list-of-hooks/filterProductContent.md index 986d679e8e..d6ea1443fa 100644 --- a/modules/concepts/hooks/list-of-hooks/filterProductContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterProductContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: true diff --git a/modules/concepts/hooks/list-of-hooks/filterProductSearch.md b/modules/concepts/hooks/list-of-hooks/filterProductSearch.md index 21d8b162fc..7684c57482 100644 --- a/modules/concepts/hooks/list-of-hooks/filterProductSearch.md +++ b/modules/concepts/hooks/list-of-hooks/filterProductSearch.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md b/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md index e883627f5d..3a83f1a86f 100644 --- a/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: true diff --git a/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md b/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md index 5496296f9a..4478edc596 100644 --- a/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md +++ b/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md @@ -2,7 +2,7 @@ menuTitle: gSitemapAppendUrls Title: gSitemapAppendUrls hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/modules/gsitemap/gsitemap.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md b/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md index 4c5e5ccb04..32374e10c7 100644 --- a/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md +++ b/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md @@ -2,7 +2,7 @@ menuTitle: legacyblockkpi Title: legacyblockkpi hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/catalog.html.twig' @@ -10,7 +10,7 @@ files: locations: - 'back office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/moduleRoutes.md b/modules/concepts/hooks/list-of-hooks/moduleRoutes.md index 8b73c173c0..181a8aa9a4 100644 --- a/modules/concepts/hooks/list-of-hooks/moduleRoutes.md +++ b/modules/concepts/hooks/list-of-hooks/moduleRoutes.md @@ -2,7 +2,7 @@ menuTitle: moduleRoutes Title: moduleRoutes hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/Dispatcher.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: hasExample: true array_return: true check_exceptions: false diff --git a/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md b/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md index ee8a29f7ce..e3fb64fc32 100644 --- a/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md +++ b/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md @@ -2,7 +2,7 @@ menuTitle: overrideLayoutTemplate Title: overrideLayoutTemplate hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/FrontController.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md b/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md index 7d15700888..254d93502b 100644 --- a/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md +++ b/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md @@ -2,7 +2,7 @@ menuTitle: overrideMinimalPurchasePrice Title: overrideMinimalPurchasePrice hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/src/Adapter/Presenter/Cart/CartPresenter.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/productSearchProvider.md b/modules/concepts/hooks/list-of-hooks/productSearchProvider.md index 2403683894..e3ddacb4cc 100644 --- a/modules/concepts/hooks/list-of-hooks/productSearchProvider.md +++ b/modules/concepts/hooks/list-of-hooks/productSearchProvider.md @@ -2,7 +2,7 @@ menuTitle: productSearchProvider Title: productSearchProvider hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/controller/ProductListingFrontController.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md b/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md index 16ee8a4b45..f418b631be 100644 --- a/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md +++ b/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: false check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/termsAndConditions.md b/modules/concepts/hooks/list-of-hooks/termsAndConditions.md index c7fe2cb92e..57d3dda912 100644 --- a/modules/concepts/hooks/list-of-hooks/termsAndConditions.md +++ b/modules/concepts/hooks/list-of-hooks/termsAndConditions.md @@ -2,7 +2,7 @@ menuTitle: termsAndConditions Title: termsAndConditions hidden: true -hookTitle: null +hookTitle: files: - url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/checkout/ConditionsToApproveFinder.php' @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false diff --git a/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md b/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md index 0ec33e1f2d..5e22faddbe 100644 --- a/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md +++ b/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md @@ -10,7 +10,7 @@ files: locations: - 'front office' type: null -hookAliases: null +hookAliases: array_return: true check_exceptions: false chain: false From 8ee07596dedfe306d5aca401b9c518f8d32495d6 Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 10 Oct 2023 14:25:29 +0200 Subject: [PATCH 17/23] Remove menuTitle, add information on how to maintain hook list --- README.md | 55 +++++++++++++++++++ .../actionAfter.md | 1 - .../actionBefore.md | 1 - .../actionFormModifier.md | 1 - ...actionListingFieldsModifier.md | 1 - ...ctionListingResultsModifier.md | 1 - .../actionOptionsModifier.md | 1 - .../actionGridDataModifier.md | 1 - ...ionGridDefinitionModifier.md | 1 - ...ionGridFilterFormModifier.md | 1 - ...tionGridPresenterModifier.md | 1 - ...nGridQueryBuilderModifier.md | 1 - .../actionFormBuilderModifier.md | 1 - .../actionFormDataProviderData.md | 1 - ...onFormDataProviderDefaultData.md | 1 - ...acyControllerName>ListingFieldsModifier.md | 1 - ...cyControllerName>ListingResultsModifier.md | 1 - .../list-of-hooks/actionAdminAfter.md | 1 - .../actionAdminBefore.md | 1 - .../list-of-hooks/actionAdminActivateAfter.md | 1 - .../actionAdminActivateBefore.md | 1 - ...rametersMetaControllerPostProcessBefore.md | 1 - ...inWebserviceControllerPostProcessBefore.md | 1 - ...onControllerPostProcessBefore.md | 1 - ...ministrationControllerPostProcessBefore.md | 1 - ...ceControllerPostProcessBefore.md | 1 - ...sPerformanceControllerPostProcessBefore.md | 1 - .../actionAdminControllerInitAfter.md | 1 - .../actionAdminControllerInitBefore.md | 1 - .../actionAdminControllerSetMedia.md | 1 - .../actionAdminDeactivateAfter.md | 1 - .../actionAdminDeactivateBefore.md | 1 - .../list-of-hooks/actionAdminDeleteAfter.md | 1 - .../list-of-hooks/actionAdminDeleteBefore.md | 1 - .../actionAdminDuplicateAfter.md | 1 - .../actionAdminDuplicateBefore.md | 1 - ...onControllerPostProcessBefore.md | 1 - ...lGeolocationControllerPostProcessBefore.md | 1 - ...onControllerPostProcessBefore.md | 1 - ...LocalizationControllerPostProcessBefore.md | 1 - .../actionAdminLoginControllerBefore.md | 1 - .../actionAdminLoginControllerForgotAfter.md | 1 - .../actionAdminLoginControllerForgotBefore.md | 1 - .../actionAdminLoginControllerLoginAfter.md | 1 - .../actionAdminLoginControllerLoginBefore.md | 1 - .../actionAdminLoginControllerResetAfter.md | 1 - .../actionAdminLoginControllerResetBefore.md | 1 - .../actionAdminLoginControllerSetMedia.md | 1 - ...ionAdminLogsControllerPostProcessBefore.md | 1 - ...nMaintenanceControllerPostProcessBefore.md | 1 - .../actionAdminMetaAfterWriteRobotsFile.md | 1 - .../actionAdminMetaBeforeWriteRobotsFile.md | 1 - .../list-of-hooks/actionAdminMetaSave.md | 1 - .../actionAdminOrdersTrackingNumberUpdate.md | 1 - ...nPreferencesControllerPostProcessBefore.md | 1 - ...ionAdminProductsControllerActivateAfter.md | 1 - ...onAdminProductsControllerActivateBefore.md | 1 - ...nAdminProductsControllerDeactivateAfter.md | 1 - ...AdminProductsControllerDeactivateBefore.md | 1 - ...ctionAdminProductsControllerDeleteAfter.md | 1 - ...tionAdminProductsControllerDeleteBefore.md | 1 - ...onAdminProductsControllerDuplicateAfter.md | 1 - ...nAdminProductsControllerDuplicateBefore.md | 1 - .../actionAdminProductsControllerSortAfter.md | 1 - ...actionAdminProductsControllerSortBefore.md | 1 - ...ctionAdminProductsListingFieldsModifier.md | 1 - ...tionAdminProductsListingResultsModifier.md | 1 - ...dminSecurityControllerPostProcessBefore.md | 1 - ...gPreferencesControllerPostProcessBefore.md | 1 - ...ntrollerPostProcessCarrierOptionsBefore.md | 1 - ...ncesControllerPostProcessHandlingBefore.md | 1 - ...taControllerPostProcessBefore.md | 1 - ...esControllerPostProcessBefore.md | 1 - ...rPreferencesControllerPostProcessBefore.md | 1 - ...esControllerPostProcessBefore.md | 1 - ...tPreferencesControllerPostProcessBefore.md | 1 - .../list-of-hooks/actionAdminSortAfter.md | 1 - .../list-of-hooks/actionAdminSortBefore.md | 1 - ...AdminThemesControllerUpdateoptionsAfter.md | 1 - .../actionAfterCreateFormHandler.md | 1 - .../actionAfterUpdateFormHandler.md | 1 - ...actionAjaxDieBefore.md | 1 - .../list-of-hooks/actionAjaxDieBefore.md | 1 - .../actionAttributeCombinationDelete.md | 1 - .../actionAttributeCombinationSave.md | 1 - .../list-of-hooks/actionAttributeDelete.md | 1 - .../actionAttributeGroupDelete.md | 1 - .../list-of-hooks/actionAttributeGroupSave.md | 1 - .../list-of-hooks/actionAttributeSave.md | 1 - .../list-of-hooks/actionAuthentication.md | 1 - .../actionAuthenticationBefore.md | 1 - ...actionBeforeAjaxDie.md | 1 - ...actionBeforeCreateFormHandler.md | 1 - ...actionBeforeUpdateFormHandler.md | 1 - .../actionBuildFrontEndObject.md | 1 - .../actionBuildMailLayoutVariables.md | 1 - .../list-of-hooks/actionCarrierProcess.md | 1 - .../list-of-hooks/actionCarrierUpdate.md | 1 - .../hooks/list-of-hooks/actionCartSave.md | 1 - .../hooks/list-of-hooks/actionCartSummary.md | 1 - .../actionCartUpdateQuantityBefore.md | 1 - .../hooks/list-of-hooks/actionCategoryAdd.md | 1 - .../list-of-hooks/actionCategoryDelete.md | 1 - .../list-of-hooks/actionCategoryUpdate.md | 1 - .../list-of-hooks/actionCheckoutRender.md | 1 - .../hooks/list-of-hooks/actionClearCache.md | 1 - .../list-of-hooks/actionClearCompileCache.md | 1 - .../list-of-hooks/actionClearSf2Cache.md | 1 - .../actionControllerInitAfter.md | 1 - .../actionControllerInitBefore.md | 1 - .../list-of-hooks/actionCustomerAccountAdd.md | 1 - .../actionCustomerAccountUpdate.md | 1 - .../list-of-hooks/actionCustomerAddGroups.md | 1 - .../actionCustomerBeforeUpdateGroup.md | 1 - .../actionCustomerLogoutAfter.md | 1 - .../actionCustomerLogoutBefore.md | 1 - .../list-of-hooks/actionDeleteGDPRCustomer.md | 1 - .../actionDeliveryPriceByPrice.md | 1 - .../actionDeliveryPriceByWeight.md | 1 - .../hooks/list-of-hooks/actionDispatcher.md | 1 - .../list-of-hooks/actionDispatcherAfter.md | 1 - .../list-of-hooks/actionDispatcherBefore.md | 1 - .../list-of-hooks/actionDownloadAttachment.md | 1 - .../actionEmailAddAfterContent.md | 1 - .../actionEmailAddBeforeContent.md | 1 - .../list-of-hooks/actionEmailSendBefore.md | 1 - .../list-of-hooks/actionExportGDPRData.md | 1 - .../list-of-hooks/actionFeatureDelete.md | 1 - .../hooks/list-of-hooks/actionFeatureSave.md | 1 - .../list-of-hooks/actionFeatureValueDelete.md | 1 - .../list-of-hooks/actionFeatureValueSave.md | 1 - .../actionFilterDeliveryOptionList.md | 1 - .../actionFrontControllerInitAfter.md | 1 - .../actionFrontControllerInitBefore.md | 1 - .../actionFrontControllerSetMedia.md | 1 - .../actionFrontControllerSetVariables.md | 1 - .../actionGenerateDocumentReference.md | 1 - .../actionGetAdminOrderButtons.md | 1 - .../actionGetAdminToolbarButtons.md | 1 - .../actionGetAlternativeSearchPanels.md | 1 - .../actionGetExtraMailTemplateVars.md | 1 - .../actionGetIDZoneByAddressID.md | 1 - .../actionGetMailLayoutTransformations.md | 1 - .../actionGetProductPropertiesAfter.md | 1 - ...ctionGetProductPropertiesAfterUnitPrice.md | 1 - .../actionGetProductPropertiesBefore.md | 1 - .../list-of-hooks/actionHtaccessCreate.md | 1 - .../actionInvoiceNumberFormatted.md | 1 - .../list-of-hooks/actionListMailThemes.md | 1 - .../hooks/list-of-hooks/actionListModules.md | 1 - .../list-of-hooks/actionLoggerLogMessage.md | 1 - .../actionMailAlterMessageBeforeSend.md | 1 - .../actionModifyFrontendSitemap.md | 1 - .../list-of-hooks/actionModuleInstallAfter.md | 1 - .../actionModuleInstallBefore.md | 1 - .../actionModuleMailAlertSendCustomer.md | 1 - .../actionModuleRegisterHookAfter.md | 1 - .../actionModuleRegisterHookBefore.md | 1 - .../actionModuleUnRegisterHookAfter.md | 1 - .../actionModuleUnRegisterHookBefore.md | 1 - .../actionModuleUninstallAfter.md | 1 - .../actionModuleUninstallBefore.md | 1 - .../actionNewsletterRegistrationAfter.md | 1 - .../actionNewsletterRegistrationBefore.md | 1 - .../actionObjectAddAfter.md | 1 - .../actionObjectAddBefore.md | 1 - .../actionObjectDeleteAfter.md | 1 - .../actionObjectDeleteBefore.md | 1 - .../actionObjectUpdateAfter.md | 1 - .../actionObjectUpdateBefore.md | 1 - .../list-of-hooks/actionObjectAddAfter.md | 1 - .../list-of-hooks/actionObjectAddBefore.md | 1 - .../actionObjectAttributeAddBefore.md | 1 - .../actionObjectAttributeGroupAddBefore.md | 1 - .../list-of-hooks/actionObjectDeleteAfter.md | 1 - .../list-of-hooks/actionObjectDeleteBefore.md | 1 - ...actionObjectProductCommentValidateAfter.md | 1 - .../actionObjectProductInCartDeleteAfter.md | 1 - .../actionObjectProductInCartDeleteBefore.md | 1 - .../list-of-hooks/actionObjectUpdateAfter.md | 1 - .../list-of-hooks/actionObjectUpdateBefore.md | 1 - .../list-of-hooks/actionOnImageCutAfter.md | 1 - .../list-of-hooks/actionOnImageResizeAfter.md | 1 - .../hooks/list-of-hooks/actionOrderEdited.md | 1 - .../actionOrderHistoryAddAfter.md | 1 - .../hooks/list-of-hooks/actionOrderReturn.md | 1 - .../hooks/list-of-hooks/actionOrderSlipAdd.md | 1 - .../actionOrderStatusPostUpdate.md | 1 - .../list-of-hooks/actionOrderStatusUpdate.md | 1 - .../list-of-hooks/actionOutputHTMLBefore.md | 1 - .../actionOverrideEmployeeImage.md | 1 - .../list-of-hooks/actionPDFInvoiceRender.md | 1 - .../list-of-hooks/actionPasswordRenew.md | 1 - .../hooks/list-of-hooks/actionPaymentCCAdd.md | 1 - .../actionPaymentConfirmation.md | 1 - .../hooks/list-of-hooks/actionPresentCart.md | 1 - .../list-of-hooks/actionPresentModule.md | 1 - .../hooks/list-of-hooks/actionPresentOrder.md | 1 - .../list-of-hooks/actionPresentOrderReturn.md | 1 - .../actionPresentPaymentOptions.md | 1 - .../list-of-hooks/actionPresentProduct.md | 1 - .../actionPresentProductListing.md | 1 - .../list-of-hooks/actionProductActivation.md | 1 - .../hooks/list-of-hooks/actionProductAdd.md | 1 - .../actionProductAttributeDelete.md | 1 - .../actionProductAttributeUpdate.md | 1 - .../list-of-hooks/actionProductCancel.md | 1 - .../list-of-hooks/actionProductCoverage.md | 1 - .../list-of-hooks/actionProductDelete.md | 1 - .../list-of-hooks/actionProductOutOfStock.md | 1 - .../actionProductPriceCalculation.md | 1 - .../hooks/list-of-hooks/actionProductSave.md | 1 - .../list-of-hooks/actionProductSearchAfter.md | 1 - ...ctionProductSearchProviderRunQueryAfter.md | 1 - ...tionProductSearchProviderRunQueryBefore.md | 1 - .../list-of-hooks/actionProductUpdate.md | 1 - .../hooks/list-of-hooks/actionSearch.md | 1 - .../hooks/list-of-hooks/actionSetInvoice.md | 1 - .../actionShopDataDuplication.md | 1 - .../actionSubmitAccountBefore.md | 1 - .../actionSubmitCustomerAddressForm.md | 1 - .../list-of-hooks/actionUpdateLangAfter.md | 1 - .../list-of-hooks/actionUpdateQuantity.md | 1 - .../actionValidateCustomerAddressForm.md | 1 - .../list-of-hooks/actionValidateOrder.md | 1 - .../list-of-hooks/actionValidateOrderAfter.md | 1 - .../actionValidateStepComplete.md | 1 - .../hooks/list-of-hooks/actionWatermark.md | 1 - .../list-of-hooks/actionWishlistAddProduct.md | 1 - .../list-of-hooks/addWebserviceResources.md | 1 - .../additionalCustomerAddressFields.md | 1 - .../additionalCustomerFormFields.md | 1 - .../hooks/list-of-hooks/dashboardData.md | 1 - .../hooks/list-of-hooks/dashboardZoneOne.md | 1 - .../hooks/list-of-hooks/dashboardZoneThree.md | 1 - .../hooks/list-of-hooks/dashboardZoneTwo.md | 1 - .../list-of-hooks/deleteProductAttribute.md | 1 - .../displayAdditionalCustomerAddressFields.md | 1 - .../displayAddressSelectorBottom.md | 1 - .../list-of-hooks/displayAdminAfterHeader.md | 1 - .../list-of-hooks/displayAdminCustomers.md | 1 - .../list-of-hooks/displayAdminEndContent.md | 1 - .../hooks/list-of-hooks/displayAdminForm.md | 1 - .../displayAdminGridTableAfter.md | 1 - .../displayAdminGridTableBefore.md | 1 - .../list-of-hooks/displayAdminListAfter.md | 1 - .../list-of-hooks/displayAdminListBefore.md | 1 - .../displayAdminNavBarBeforeEnd.md | 1 - .../list-of-hooks/displayAdminOptions.md | 1 - .../hooks/list-of-hooks/displayAdminOrder.md | 1 - .../displayAdminOrderCreateExtraButtons.md | 1 - .../list-of-hooks/displayAdminOrderMain.md | 1 - .../displayAdminOrderMainBottom.md | 1 - .../list-of-hooks/displayAdminOrderSide.md | 1 - .../displayAdminOrderSideBottom.md | 1 - .../displayAdminOrderTabContent.md | 1 - .../list-of-hooks/displayAdminOrderTabLink.md | 1 - .../list-of-hooks/displayAdminOrderTop.md | 1 - .../displayAdminProductsCombinationBottom.md | 1 - .../displayAdminProductsExtra.md | 1 - ...ayAdminProductsMainStepLeftColumnBottom.md | 1 - ...ayAdminProductsMainStepLeftColumnMiddle.md | 1 - ...yAdminProductsMainStepRightColumnBottom.md | 1 - .../displayAdminProductsOptionsStepBottom.md | 1 - .../displayAdminProductsOptionsStepTop.md | 1 - .../displayAdminProductsPriceStepBottom.md | 1 - ...isplayAdminProductsQuantitiesStepBottom.md | 1 - .../displayAdminProductsSeoStepBottom.md | 1 - .../displayAdminProductsShippingStepBottom.md | 1 - .../displayAdminStatsGraphEngine.md | 1 - .../displayAdminStatsGridEngine.md | 1 - .../list-of-hooks/displayAdminStatsModules.md | 1 - .../displayAdminThemesListAfter.md | 1 - .../hooks/list-of-hooks/displayAdminView.md | 1 - .../displayAfterBodyOpeningTag.md | 1 - .../list-of-hooks/displayAfterCarrier.md | 1 - .../displayAfterProductThumbs.md | 1 - .../list-of-hooks/displayAfterTitleTag.md | 1 - .../list-of-hooks/displayAttributeForm.md | 1 - .../displayBackOfficeCategory.md | 1 - .../displayBackOfficeEmployeeMenu.md | 1 - .../list-of-hooks/displayBackOfficeHeader.md | 1 - .../list-of-hooks/displayBackOfficeTop.md | 1 - .../hooks/list-of-hooks/displayBanner.md | 1 - .../displayBeforeBodyClosingTag.md | 1 - .../list-of-hooks/displayBeforeCarrier.md | 1 - .../displayCMSDisputeInformation.md | 1 - .../list-of-hooks/displayCMSPrintButton.md | 1 - .../displayCarrierExtraContent.md | 1 - .../displayCartExtraProductActions.md | 1 - .../list-of-hooks/displayCartModalContent.md | 1 - .../list-of-hooks/displayCartModalFooter.md | 1 - .../displayCheckoutBeforeConfirmation.md | 1 - .../displayCheckoutSubtotalDetails.md | 1 - .../displayCheckoutSummaryTop.md | 1 - .../list-of-hooks/displayContactContent.md | 1 - .../list-of-hooks/displayContactLeftColumn.md | 1 - .../displayContactRightColumn.md | 1 - .../displayCrossSellingShoppingCart.md | 1 - .../list-of-hooks/displayCustomerAccount.md | 1 - .../displayCustomerAccountForm.md | 1 - .../displayCustomerAccountFormTop.md | 1 - .../displayCustomerLoginFormAfter.md | 1 - .../list-of-hooks/displayCustomization.md | 1 - .../displayDashboardToolbarIcons.md | 1 - .../displayDashboardToolbarTopMenu.md | 1 - .../list-of-hooks/displayDashboardTop.md | 1 - .../displayEmptyModuleCategoryExtraMessage.md | 1 - .../list-of-hooks/displayExpressCheckout.md | 1 - .../hooks/list-of-hooks/displayFeatureForm.md | 1 - .../displayFeaturePostProcess.md | 1 - .../list-of-hooks/displayFeatureValueForm.md | 1 - .../displayFeatureValuePostProcess.md | 1 - .../hooks/list-of-hooks/displayFooter.md | 1 - .../hooks/list-of-hooks/displayFooterAfter.md | 1 - .../list-of-hooks/displayFooterBefore.md | 1 - .../list-of-hooks/displayFooterCategory.md | 1 - .../list-of-hooks/displayFooterProduct.md | 1 - .../hooks/list-of-hooks/displayGDPRConsent.md | 1 - .../hooks/list-of-hooks/displayHeader.md | 1 - .../list-of-hooks/displayHeaderCategory.md | 1 - .../hooks/list-of-hooks/displayHome.md | 1 - .../displayInvoiceLegalFreeText.md | 1 - .../hooks/list-of-hooks/displayLeftColumn.md | 1 - .../list-of-hooks/displayLeftColumnProduct.md | 1 - .../hooks/list-of-hooks/displayMaintenance.md | 1 - .../displayModuleConfigureExtraButtons.md | 1 - .../list-of-hooks/displayMyAccountBlock.md | 1 - .../hooks/list-of-hooks/displayNav1.md | 1 - .../hooks/list-of-hooks/displayNav2.md | 1 - .../list-of-hooks/displayNavFullWidth.md | 1 - .../displayNewsletterRegistration.md | 1 - .../hooks/list-of-hooks/displayNotFound.md | 1 - .../list-of-hooks/displayOrderConfirmation.md | 1 - .../displayOrderConfirmation1.md | 1 - .../displayOrderConfirmation2.md | 1 - .../hooks/list-of-hooks/displayOrderDetail.md | 1 - .../list-of-hooks/displayOrderPreview.md | 1 - .../list-of-hooks/displayOverrideTemplate.md | 1 - .../list-of-hooks/displayPaymentByBinaries.md | 1 - .../list-of-hooks/displayPaymentReturn.md | 1 - .../hooks/list-of-hooks/displayPaymentTop.md | 1 - .../displayPersonalInformationTop.md | 1 - .../list-of-hooks/displayProductActions.md | 1 - .../displayProductAdditionalInfo.md | 1 - .../displayProductListReviews.md | 1 - .../list-of-hooks/displayProductPriceBlock.md | 1 - .../hooks/list-of-hooks/displayReassurance.md | 1 - .../hooks/list-of-hooks/displayRightColumn.md | 1 - .../displayRightColumnProduct.md | 1 - .../hooks/list-of-hooks/displaySearch.md | 1 - .../list-of-hooks/displayShoppingCart.md | 1 - .../displayShoppingCartFooter.md | 1 - .../hooks/list-of-hooks/displayTop.md | 1 - .../list-of-hooks/filterCategoryContent.md | 1 - .../list-of-hooks/filterCmsCategoryContent.md | 1 - .../hooks/list-of-hooks/filterCmsContent.md | 1 - .../hooks/list-of-hooks/filterHtmlContent.md | 1 - .../filterManufacturerContent.md | 1 - .../list-of-hooks/filterProductContent.md | 1 - .../list-of-hooks/filterProductSearch.md | 1 - .../list-of-hooks/filterSupplierContent.md | 1 - .../hooks/list-of-hooks/gSitemapAppendUrls.md | 1 - .../hooks/list-of-hooks/legacyblockkpi.md | 1 - .../hooks/list-of-hooks/moduleRoutes.md | 1 - .../list-of-hooks/overrideLayoutTemplate.md | 1 - .../overrideMinimalPurchasePrice.md | 1 - .../list-of-hooks/productSearchProvider.md | 1 - .../sendMailAlterTemplateVars.md | 1 - .../hooks/list-of-hooks/termsAndConditions.md | 1 - .../validateCustomerFormFields.md | 1 - 371 files changed, 55 insertions(+), 370 deletions(-) diff --git a/README.md b/README.md index 8ce807377b..21ceed8c5e 100644 --- a/README.md +++ b/README.md @@ -23,3 +23,58 @@ The deployment pipeline is documented on the [sources repository for DevDocs](ht ## License Content from this documentation is licensed under the [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/). + +## Maintaining Hook list referential + +A complete referential of hook and informations on each hook is located in `modules/concepts/hooks/list-of-hooks/`. + +This referential can be generated with a script, crawling all: + +- Prestashop (core) codebase +- all native modules +- all native themes + +In the documentation, a hook is described with in yaml format, with this format: + +```yaml +--- +menuTitle: string #name of the hook +Title: string #name of the hook +hidden: boolean[true] #must be true +hookTitle: string #title for the description +description: string #description sentence +origin: string #core, module or theme +files: + - + theme: string #theme name only if origin=theme + module: string #module name only if origin=module + url: string #url of the file on github + file: string #path of the file +locations: + - string #back office, front office or both +type: string #action or display +hookAliases: + - string #old hook name or alias +array_return: boolean #true or false if the hook has an `$array_return` parameter set to `true` +check_exceptions: boolean #true or false if the hook has a `$check_exceptions` parameter set to `false` +chain: boolean #true or false if the hook has a `$chain` parameter set to `true` +--- +``` + +This `yaml` structure allows the shortcode `hookDescriptor` to render a digest html page for the documentation, and allows the search script to search in this metadata. + +Next, add the shortcode in the page's content: + +``` +{{% hookDescriptor %}} +``` + +Finally, if available, add a section with a code example, and parameters details: + +``` +## Parameters details +[...] + +## Call of the Hook in the origin file +[...] +``` \ No newline at end of file diff --git a/modules/concepts/hooks/list-of-hooks/actionAfter.md b/modules/concepts/hooks/list-of-hooks/actionAfter.md index 9b96ad55dc..20900ff9ab 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAfter Title: actionAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionBefore.md b/modules/concepts/hooks/list-of-hooks/actionBefore.md index 9c09798224..2224aafead 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionBefore Title: actionBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionFormModifier.md b/modules/concepts/hooks/list-of-hooks/actionFormModifier.md index b1ffe432aa..7fae447e97 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFormModifier Title: actionFormModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md index 5b317d87b6..42cfb8b657 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionListingFieldsModifier Title: actionListingFieldsModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md index b7e452f87f..1590ac25ba 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionListingResultsModifier Title: actionListingResultsModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md b/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md index c9da7a68a6..904817330b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionOptionsModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOptionsModifier Title: actionOptionsModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md index e597efb4d2..392147524c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridDataModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGridDataModifier Title: actionGridDataModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md index bacb905310..ff1c8e14ef 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridDefinitionModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGridDefinitionModifier Title: actionGridDefinitionModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md index 1c5ea80ae5..0e948b1ac5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridFilterFormModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGridFilterFormModifier Title: actionGridFilterFormModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md index 2d84202b9a..71751e4664 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridPresenterModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGridPresenterModifier Title: actionGridPresenterModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md b/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md index c6a702b918..94b0fe8916 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionGridQueryBuilderModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGridQueryBuilderModifier Title: actionGridQueryBuilderModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md b/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md index 663301cadc..4ade9c63a7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormBuilderModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: 'action<FormName>FormBuilderModifier' Title: actionFormBuilderModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md index 88415f7848..fad7566591 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderData.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFormDataProviderData Title: actionFormDataProviderData hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md index 1e312041e6..a57e5dc341 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md +++ b/modules/concepts/hooks/list-of-hooks/actionFormDataProviderDefaultData.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFormDataProviderDefaultData Title: actionFormDataProviderDefaultData hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md index 9f76ef0ae4..d8fde6b0f0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingFieldsModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionListingFieldsModifier Title: actionListingFieldsModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md index 654c9bbc33..f1ff6b6b73 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionListingResultsModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionListingResultsModifier Title: actionListingResultsModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md index 47bcc85f94..46e617475e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminAfter Title: actionAdminAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md index 3c583e0dc8..d645e4c593 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminBefore Title: actionAdminBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md index 2e4cefc00c..689bff7ea5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminActivateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminActivateAfter Title: actionAdminActivateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md index 61c5f16358..f3c10d2423 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminActivateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminActivateBefore Title: actionAdminActivateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md index a13e3c1b6c..0091858bfe 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdminShopParametersMetaControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminAdminShopParametersMetaControllerPostProcessBefore Title: actionAdminAdminShopParametersMetaControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Configure Shop Parameters Meta Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md index 38e31d27f9..f3c8b767f2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdminWebserviceControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminAdminWebserviceControllerPostProcessBefore Title: actionAdminAdminWebserviceControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md index bdef1f282e..97179e60dd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminAdministrationControllerPostProcessBefore Title: actionAdminAdministrationControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md index 1ef3c0f559..d8f08c9ae3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdministrationControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminAdministrationControllerPostProcessBefore Title: actionAdminAdministrationControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Configure Advanced Parameters Administration Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md index 84dc6475cb..8ea489393b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore Title: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md index 3b7b4a16c5..a36bf36efd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminAdvancedParametersPerformanceControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore Title: actionAdminAdvancedParametersPerformanceControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Configure Advanced Parameters Performance Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md index 25acf1124e..a6575db621 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminControllerInitAfter Title: actionAdminControllerInitAfter hidden: true hookTitle: 'Perform actions after admin controller initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md index e14cee37cf..7722887d45 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerInitBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminControllerInitBefore Title: actionAdminControllerInitBefore hidden: true hookTitle: 'Perform actions before admin controller initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md index 923dc07921..715736c42f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminControllerSetMedia.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminControllerSetMedia Title: actionAdminControllerSetMedia hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md index 5e3f71df29..aa2c742f20 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminDeactivateAfter Title: actionAdminDeactivateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md index cb1eb47ba2..e244ed3bfd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeactivateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminDeactivateBefore Title: actionAdminDeactivateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md index 2f02e85953..91bfe803db 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminDeleteAfter Title: actionAdminDeleteAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md index 5909df649f..e20d1892e7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDeleteBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminDeleteBefore Title: actionAdminDeleteBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md index a9b7954a37..c47a2ae9cc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminDuplicateAfter Title: actionAdminDuplicateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md index 7e9eb0b54b..a366697a3c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminDuplicateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminDuplicateBefore Title: actionAdminDuplicateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md index b5acd12060..d147a07402 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminInternationalGeolocationControllerPostProcessBefore Title: actionAdminInternationalGeolocationControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md index 819b7e02e9..01d3860915 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalGeolocationControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminInternationalGeolocationControllerPostProcessBefore Title: actionAdminInternationalGeolocationControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Improve International Geolocation Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md index de288401d2..bf0c3f7298 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminInternationalLocalizationControllerPostProcessBefore Title: actionAdminInternationalLocalizationControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md index 1f9906034d..a6a095045b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminInternationalLocalizationControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminInternationalLocalizationControllerPostProcessBefore Title: actionAdminInternationalLocalizationControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Improve International Localization Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md index bce99fffa1..453d6ea214 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerBefore Title: actionAdminLoginControllerBefore hidden: true hookTitle: 'Perform actions before admin login controller initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md index b3e1d43ef4..8407143ed5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerForgotAfter Title: actionAdminLoginControllerForgotAfter hidden: true hookTitle: 'Perform actions after admin login controller forgot action initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md index 06c81591a9..2055203d48 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerForgotBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerForgotBefore Title: actionAdminLoginControllerForgotBefore hidden: true hookTitle: 'Perform actions before admin login controller forgot action initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md index 8a3dc4f890..d6836c920f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerLoginAfter Title: actionAdminLoginControllerLoginAfter hidden: true hookTitle: 'Perform actions after admin login controller login action initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md index b57266b11d..e013be84d7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerLoginBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerLoginBefore Title: actionAdminLoginControllerLoginBefore hidden: true hookTitle: 'Perform actions before admin login controller login action initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md index de2f6d984e..439a5a6fd0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerResetAfter Title: actionAdminLoginControllerResetAfter hidden: true hookTitle: 'Perform actions after admin login controller reset action initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md index d43e318c4e..8ab3197abe 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerResetBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerResetBefore Title: actionAdminLoginControllerResetBefore hidden: true hookTitle: 'Perform actions before admin login controller reset action initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md index 345f5ecea0..43be5bcf98 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLoginControllerSetMedia.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLoginControllerSetMedia Title: actionAdminLoginControllerSetMedia hidden: true hookTitle: 'Set media on admin login page header' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md index 046fab0cf8..beb65c9644 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminLogsControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminLogsControllerPostProcessBefore Title: actionAdminLogsControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md index e81cbb07ca..549ab18a65 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMaintenanceControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminMaintenanceControllerPostProcessBefore Title: actionAdminMaintenanceControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md index dd95c5104b..6aee19c05b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaAfterWriteRobotsFile.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminMetaAfterWriteRobotsFile Title: actionAdminMetaAfterWriteRobotsFile hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md index 96036b6dca..0abaedbd58 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaBeforeWriteRobotsFile.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminMetaBeforeWriteRobotsFile Title: actionAdminMetaBeforeWriteRobotsFile hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md index 8f98481c37..faf0cfd53a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminMetaSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminMetaSave Title: actionAdminMetaSave hidden: true hookTitle: 'After saving the configuration in AdminMeta' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md b/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md index a6bef22d89..fcfb0f5873 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminOrdersTrackingNumberUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminOrdersTrackingNumberUpdate Title: actionAdminOrdersTrackingNumberUpdate hidden: true hookTitle: 'After setting the tracking number for the order' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md index 91f8a672d6..4fce450a74 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminPreferencesControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminPreferencesControllerPostProcessBefore Title: actionAdminPreferencesControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md index 32bae1d36f..93ee9ba13a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerActivateAfter Title: actionAdminProductsControllerActivateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md index 772af171c1..518d46a678 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerActivateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerActivateBefore Title: actionAdminProductsControllerActivateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md index 12aa02f9b6..e5e1b2ef36 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerDeactivateAfter Title: actionAdminProductsControllerDeactivateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md index 1548fe1b77..1c777e6df9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeactivateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerDeactivateBefore Title: actionAdminProductsControllerDeactivateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md index 2add514f3b..34d84a947d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerDeleteAfter Title: actionAdminProductsControllerDeleteAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md index e8c7250b89..b5b5135789 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDeleteBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerDeleteBefore Title: actionAdminProductsControllerDeleteBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md index e13b29dd4b..a486e07908 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerDuplicateAfter Title: actionAdminProductsControllerDuplicateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md index 67f60517db..bf8377098c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerDuplicateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerDuplicateBefore Title: actionAdminProductsControllerDuplicateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md index 7af26e048d..ee9581887c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerSortAfter Title: actionAdminProductsControllerSortAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md index ef8d964eb7..e9786384d1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsControllerSortBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsControllerSortBefore Title: actionAdminProductsControllerSortBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md index a729434c12..34016c9b65 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingFieldsModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsListingFieldsModifier Title: actionAdminProductsListingFieldsModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md index f8a76bdb59..b2ede53889 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminProductsListingResultsModifier.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminProductsListingResultsModifier Title: actionAdminProductsListingResultsModifier hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md index 1c405dd57b..855f79423a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSecurityControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminSecurityControllerPostProcessBefore Title: actionAdminSecurityControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Security Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md index 7176fadbdd..9691f100cf 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShippingPreferencesControllerPostProcessBefore Title: actionAdminShippingPreferencesControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Improve Shipping Preferences Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md index a8adadfb87..43f56661c4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore Title: actionAdminShippingPreferencesControllerPostProcessCarrierOptionsBefore hidden: true hookTitle: 'On post-process in Admin Improve Shipping Preferences Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md index 1c0a4cd819..e64ca90087 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShippingPreferencesControllerPostProcessHandlingBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShippingPreferencesControllerPostProcessHandlingBefore Title: actionAdminShippingPreferencesControllerPostProcessHandlingBefore hidden: true hookTitle: 'On post-process in Admin Improve Shipping Preferences Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md index 0c48bb96b4..7ec255f1bb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersMetaControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShopParametersMetaControllerPostProcessBefore Title: actionAdminShopParametersMetaControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md index 50dcb4136b..bf1b26515e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore Title: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md index f169515f3c..1f686e1525 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersOrderPreferencesControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore Title: actionAdminShopParametersOrderPreferencesControllerPostProcessBefore hidden: true hookTitle: 'On post-process in Admin Configure Shop Parameters Order Preferences Controller' diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md index f278aa5a2f..77d2fbc4c6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShopParametersProductPreferencesControllerPostProcessBefore Title: actionAdminShopParametersProductPreferencesControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md index 210d78c4c5..b0222b9133 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminShopParametersProductPreferencesControllerPostProcessBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminShopParametersProductPreferencesControllerPostProcessBefore Title: actionAdminShopParametersProductPreferencesControllerPostProcessBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md index 3769e67ab2..f8d501a745 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSortAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminSortAfter Title: actionAdminSortAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md b/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md index d1d1afb50f..faca71a3d3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminSortBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminSortBefore Title: actionAdminSortBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md b/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md index 3547e86711..4113988c27 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionAdminThemesControllerUpdateoptionsAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAdminThemesControllerUpdateoptionsAfter Title: actionAdminThemesControllerUpdateoptionsAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md index 1a43e52a3e..db8e4f8d53 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfterCreateFormHandler.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAfterCreateFormHandler Title: actionAfterCreateFormHandler hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md index c82b56fa41..35a77cda95 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionAfterUpdateFormHandler.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAfterUpdateFormHandler Title: actionAfterUpdateFormHandler hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index f67afdf055..6f4ecd7ead 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAjaxDieBefore Title: actionAjaxDieBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md index 157747048c..b026a513eb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAjaxDieBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAjaxDieBefore Title: actionAjaxDieBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md index c73ae94224..069259493f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAttributeCombinationDelete Title: actionAttributeCombinationDelete hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md index 0f913c211b..a5e7c5e9fd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeCombinationSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAttributeCombinationSave Title: actionAttributeCombinationSave hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md index cbf8f4547b..3af0405ecb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAttributeDelete Title: actionAttributeDelete hidden: true hookTitle: 'Deleting an attributes features value' diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md index f5deb9948d..188aea18a0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAttributeGroupDelete Title: actionAttributeGroupDelete hidden: true hookTitle: 'Deleting attribute group' diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md index e5bba08b77..18a7ee0e12 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeGroupSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAttributeGroupSave Title: actionAttributeGroupSave hidden: true hookTitle: 'Saving an attribute group' diff --git a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md index 39b98946ef..4e7eaa3d25 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionAttributeSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAttributeSave Title: actionAttributeSave hidden: true hookTitle: 'Saving an attributes features value' diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md index 4128aebc80..5e34707de9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthentication.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthentication.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAuthentication Title: actionAuthentication hidden: true hookTitle: 'Successful customer authentication' diff --git a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md index 70cd2b4223..aadb743461 100644 --- a/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionAuthenticationBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionAuthenticationBefore Title: actionAuthenticationBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md b/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md index 0b4ca781df..14bbe742a4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeAjaxDie.md @@ -1,5 +1,4 @@ --- -menuTitle: actionBeforeAjaxDie Title: actionBeforeAjaxDie hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md index 833a3215e1..7eb0f0c66a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeCreateFormHandler.md @@ -1,5 +1,4 @@ --- -menuTitle: actionBeforeCreateFormHandler Title: actionBeforeCreateFormHandler hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md b/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md index bb94fd0d40..1caefaa01b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md +++ b/modules/concepts/hooks/list-of-hooks/actionBeforeUpdateFormHandler.md @@ -1,5 +1,4 @@ --- -menuTitle: actionBeforeUpdateFormHandler Title: actionBeforeUpdateFormHandler hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md b/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md index ce3f2deb5a..1f2b646334 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md +++ b/modules/concepts/hooks/list-of-hooks/actionBuildFrontEndObject.md @@ -1,5 +1,4 @@ --- -menuTitle: actionBuildFrontEndObject Title: actionBuildFrontEndObject hidden: true hookTitle: 'Manage elements added to the "prestashop" javascript object' diff --git a/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md b/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md index 26f2c0b5b6..5c0f583bd5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md +++ b/modules/concepts/hooks/list-of-hooks/actionBuildMailLayoutVariables.md @@ -1,5 +1,4 @@ --- -menuTitle: actionBuildMailLayoutVariables Title: actionBuildMailLayoutVariables hidden: true hookTitle: 'Build the variables used in email layout rendering' diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md index b21e38f676..25c7f14d02 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierProcess.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCarrierProcess Title: actionCarrierProcess hidden: true hookTitle: 'Carrier process' diff --git a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md index 8424e518d5..ab7bc611d5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCarrierUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCarrierUpdate Title: actionCarrierUpdate hidden: true hookTitle: 'Carrier Update' diff --git a/modules/concepts/hooks/list-of-hooks/actionCartSave.md b/modules/concepts/hooks/list-of-hooks/actionCartSave.md index 2cfd790a95..d368e8a7de 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCartSave Title: actionCartSave hidden: true hookTitle: 'Cart creation and update' diff --git a/modules/concepts/hooks/list-of-hooks/actionCartSummary.md b/modules/concepts/hooks/list-of-hooks/actionCartSummary.md index 1b13c7a2d8..246a482445 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartSummary.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartSummary.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCartSummary Title: actionCartSummary hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md index 3b62bc6a17..73578bb1eb 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCartUpdateQuantityBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCartUpdateQuantityBefore Title: actionCartUpdateQuantityBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md index 08c5f581b8..21fe0015e6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryAdd.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCategoryAdd Title: actionCategoryAdd hidden: true hookTitle: 'Category creation' diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md index f25fcb351b..d9aa6e1dce 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCategoryDelete Title: actionCategoryDelete hidden: true hookTitle: 'Category deletion' diff --git a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md index 762cd8c8fd..952230ed86 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCategoryUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCategoryUpdate Title: actionCategoryUpdate hidden: true hookTitle: 'Category modification' diff --git a/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md b/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md index 1cf4b92702..90aa3d1932 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md +++ b/modules/concepts/hooks/list-of-hooks/actionCheckoutRender.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCheckoutRender Title: actionCheckoutRender hidden: true hookTitle: 'Modify checkout process' diff --git a/modules/concepts/hooks/list-of-hooks/actionClearCache.md b/modules/concepts/hooks/list-of-hooks/actionClearCache.md index 80a4dcb68d..943dbfb4da 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearCache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearCache.md @@ -1,5 +1,4 @@ --- -menuTitle: actionClearCache Title: actionClearCache hidden: true hookTitle: 'Clear smarty cache' diff --git a/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md b/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md index 15f44c9bc9..9c02c9d890 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearCompileCache.md @@ -1,5 +1,4 @@ --- -menuTitle: actionClearCompileCache Title: actionClearCompileCache hidden: true hookTitle: 'Clear smarty compile cache' diff --git a/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md b/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md index d940927209..57c5a97901 100644 --- a/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md +++ b/modules/concepts/hooks/list-of-hooks/actionClearSf2Cache.md @@ -1,5 +1,4 @@ --- -menuTitle: actionClearSf2Cache Title: actionClearSf2Cache hidden: true hookTitle: 'Clear Sf2 cache' diff --git a/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md index 868a4fea2a..8de5f68d6b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionControllerInitAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionControllerInitAfter Title: actionControllerInitAfter hidden: true hookTitle: 'Perform actions after controller initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md index 4d18218891..2c4400fa8d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionControllerInitBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionControllerInitBefore Title: actionControllerInitBefore hidden: true hookTitle: 'Perform actions before controller initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md index 312ee20f62..ec75e8557b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountAdd.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCustomerAccountAdd Title: actionCustomerAccountAdd hidden: true hookTitle: 'Successful customer account creation' diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md index 93cf210e5d..f854ab7dac 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAccountUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCustomerAccountUpdate Title: actionCustomerAccountUpdate hidden: true hookTitle: 'Successful customer account update' diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md b/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md index 2457a9544c..e3a25c8e47 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerAddGroups.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCustomerAddGroups Title: actionCustomerAddGroups hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md b/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md index e5fd35e6e1..384bb4f0a2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerBeforeUpdateGroup.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCustomerBeforeUpdateGroup Title: actionCustomerBeforeUpdateGroup hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md index 602203b3a0..4c3a56a299 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCustomerLogoutAfter Title: actionCustomerLogoutAfter hidden: true hookTitle: 'After customer logout' diff --git a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md index e98add4fce..d5b224bd79 100644 --- a/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionCustomerLogoutBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionCustomerLogoutBefore Title: actionCustomerLogoutBefore hidden: true hookTitle: 'Before customer logout' diff --git a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md index b82eafb767..7e823f3f73 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeleteGDPRCustomer.md @@ -1,5 +1,4 @@ --- -menuTitle: actionDeleteGDPRCustomer Title: actionDeleteGDPRCustomer hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md index d7733787d2..b09c9d467e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByPrice.md @@ -1,5 +1,4 @@ --- -menuTitle: actionDeliveryPriceByPrice Title: actionDeliveryPriceByPrice hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md index 28098e79d2..30de008e6a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md +++ b/modules/concepts/hooks/list-of-hooks/actionDeliveryPriceByWeight.md @@ -1,5 +1,4 @@ --- -menuTitle: actionDeliveryPriceByWeight Title: actionDeliveryPriceByWeight hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcher.md b/modules/concepts/hooks/list-of-hooks/actionDispatcher.md index 5c5e0279cc..0ce710f34b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcher.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcher.md @@ -1,5 +1,4 @@ --- -menuTitle: actionDispatcher Title: actionDispatcher hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md b/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md index 1a73445198..3a82141114 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcherAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionDispatcherAfter Title: actionDispatcherAfter hidden: true hookTitle: 'After dispatch' diff --git a/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md b/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md index 5f44817785..2d00e5edf4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionDispatcherBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionDispatcherBefore Title: actionDispatcherBefore hidden: true hookTitle: 'Before dispatch' diff --git a/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md b/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md index 11c88e5972..8542130dcd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md +++ b/modules/concepts/hooks/list-of-hooks/actionDownloadAttachment.md @@ -1,5 +1,4 @@ --- -menuTitle: actionDownloadAttachment Title: actionDownloadAttachment hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md b/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md index 1b923e9f95..81daaede16 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailAddAfterContent.md @@ -1,5 +1,4 @@ --- -menuTitle: actionEmailAddAfterContent Title: actionEmailAddAfterContent hidden: true hookTitle: 'Add extra content after mail content' diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md b/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md index c177d7e807..2f2cbc7dbe 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailAddBeforeContent.md @@ -1,5 +1,4 @@ --- -menuTitle: actionEmailAddBeforeContent Title: actionEmailAddBeforeContent hidden: true hookTitle: 'Add extra content before mail content' diff --git a/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md b/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md index d5444542e6..e72865a1a0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionEmailSendBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionEmailSendBefore Title: actionEmailSendBefore hidden: true hookTitle: 'Before sending an email' diff --git a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md index 4f364d18cb..94978549dd 100644 --- a/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md +++ b/modules/concepts/hooks/list-of-hooks/actionExportGDPRData.md @@ -1,5 +1,4 @@ --- -menuTitle: actionExportGDPRData Title: actionExportGDPRData hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md index dda6bdd171..3cf6c00b94 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFeatureDelete Title: actionFeatureDelete hidden: true hookTitle: "Deleting attributes' features" diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md index fce1c86f60..18d0fb7829 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFeatureSave Title: actionFeatureSave hidden: true hookTitle: "Saving attributes' features" diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md index 49f3ce803c..21997d7aac 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFeatureValueDelete Title: actionFeatureValueDelete hidden: true hookTitle: "Deleting attributes' features' values" diff --git a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md index cd15c61ac7..c1b7a2dc15 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionFeatureValueSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFeatureValueSave Title: actionFeatureValueSave hidden: true hookTitle: 'Saving an attributes features value' diff --git a/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md b/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md index 8c3844d1c1..56e3035c47 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md +++ b/modules/concepts/hooks/list-of-hooks/actionFilterDeliveryOptionList.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFilterDeliveryOptionList Title: actionFilterDeliveryOptionList hidden: true hookTitle: 'Modify delivery option list result' diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md index 3d0f4ff388..bd4f566525 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFrontControllerInitAfter Title: actionFrontControllerInitAfter hidden: true hookTitle: 'Perform actions after front office controller initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md index a93e76dd8b..362b9e52c7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerInitBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFrontControllerInitBefore Title: actionFrontControllerInitBefore hidden: true hookTitle: 'Perform actions before front office controller initialization' diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md index 723e374e35..3a7bf3a065 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetMedia.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFrontControllerSetMedia Title: actionFrontControllerSetMedia hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md index 16f038cadb..b67a329c95 100644 --- a/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md +++ b/modules/concepts/hooks/list-of-hooks/actionFrontControllerSetVariables.md @@ -1,5 +1,4 @@ --- -menuTitle: actionFrontControllerSetVariables Title: actionFrontControllerSetVariables hidden: true hookTitle: 'Add variables in JavaScript object and Smarty templates' diff --git a/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md b/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md index 080931c831..d266ad18cc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md +++ b/modules/concepts/hooks/list-of-hooks/actionGenerateDocumentReference.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGenerateDocumentReference Title: actionGenerateDocumentReference hidden: true hookTitle: 'Modify document reference for Order' diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md b/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md index 9777bdca29..c694482fb1 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAdminOrderButtons.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetAdminOrderButtons Title: actionGetAdminOrderButtons hidden: true hookTitle: 'Admin Order Buttons' diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md b/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md index 1a70d00371..8c3704e055 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAdminToolbarButtons.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetAdminToolbarButtons Title: actionGetAdminToolbarButtons hidden: true hookTitle: 'Allows to add buttons in any toolbar in the back office' diff --git a/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md b/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md index f3516e23a9..b80dd89765 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetAlternativeSearchPanels.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetAlternativeSearchPanels Title: actionGetAlternativeSearchPanels hidden: true hookTitle: 'Additional search panel' diff --git a/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md b/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md index 1804aea8a3..813d945b83 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetExtraMailTemplateVars.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetExtraMailTemplateVars Title: actionGetExtraMailTemplateVars hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md b/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md index 7f9f662aa2..30bf3a0256 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetIDZoneByAddressID.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetIDZoneByAddressID Title: actionGetIDZoneByAddressID hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md b/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md index 026777a756..d7d0b2a06a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetMailLayoutTransformations.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetMailLayoutTransformations Title: actionGetMailLayoutTransformations hidden: true hookTitle: 'Define the transformation to apply on layout' diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md index ef1f579693..0b1203af71 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetProductPropertiesAfter Title: actionGetProductPropertiesAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md index fdd003603a..1657dd9c4f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesAfterUnitPrice.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetProductPropertiesAfterUnitPrice Title: actionGetProductPropertiesAfterUnitPrice hidden: true hookTitle: 'Product Properties' diff --git a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md index faa3d71972..e9c4d68d5c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionGetProductPropertiesBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionGetProductPropertiesBefore Title: actionGetProductPropertiesBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md index 320ab48c59..36a7e4e016 100644 --- a/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md +++ b/modules/concepts/hooks/list-of-hooks/actionHtaccessCreate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionHtaccessCreate Title: actionHtaccessCreate hidden: true hookTitle: 'After htaccess creation' diff --git a/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md b/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md index 8af1575aee..6516525a36 100644 --- a/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md +++ b/modules/concepts/hooks/list-of-hooks/actionInvoiceNumberFormatted.md @@ -1,5 +1,4 @@ --- -menuTitle: actionInvoiceNumberFormatted Title: actionInvoiceNumberFormatted hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md b/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md index 8a5a7db4c5..e21d43c111 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md +++ b/modules/concepts/hooks/list-of-hooks/actionListMailThemes.md @@ -1,5 +1,4 @@ --- -menuTitle: actionListMailThemes Title: actionListMailThemes hidden: true hookTitle: 'List the available email themes and layouts' diff --git a/modules/concepts/hooks/list-of-hooks/actionListModules.md b/modules/concepts/hooks/list-of-hooks/actionListModules.md index e7e485777a..e891f466d3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionListModules.md +++ b/modules/concepts/hooks/list-of-hooks/actionListModules.md @@ -1,5 +1,4 @@ --- -menuTitle: actionListModules Title: actionListModules hidden: true hookTitle: 'Allows you to add your own modules from a remote source in the modules list in the back office.' diff --git a/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md b/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md index b3616593cf..66862d865e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md +++ b/modules/concepts/hooks/list-of-hooks/actionLoggerLogMessage.md @@ -1,5 +1,4 @@ --- -menuTitle: actionLoggerLogMessage Title: actionLoggerLogMessage hidden: true hookTitle: 'Allows to make extra action while a log is triggered' diff --git a/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md b/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md index 8338af385b..5b6dfb5483 100644 --- a/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md +++ b/modules/concepts/hooks/list-of-hooks/actionMailAlterMessageBeforeSend.md @@ -1,5 +1,4 @@ --- -menuTitle: actionMailAlterMessageBeforeSend Title: actionMailAlterMessageBeforeSend hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md b/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md index c4028cc12c..4793c9b3ef 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md +++ b/modules/concepts/hooks/list-of-hooks/actionModifyFrontendSitemap.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModifyFrontendSitemap Title: actionModifyFrontendSitemap hidden: true hookTitle: 'Allows modules to add own urls (even whole new groups) to frontend sitemap.' diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md index 6e231271ff..2bcb6b131c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleInstallAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleInstallAfter Title: actionModuleInstallAfter hidden: true hookTitle: actionModuleInstallAfter diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md index c684835abd..005d9ea685 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleInstallBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleInstallBefore Title: actionModuleInstallBefore hidden: true hookTitle: actionModuleInstallBefore diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md index 7b5fddd436..336e9dfd57 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleMailAlertSendCustomer.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleMailAlertSendCustomer Title: actionModuleMailAlertSendCustomer hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md index b047eab3ad..2f8587e673 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleRegisterHookAfter Title: actionModuleRegisterHookAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md index 82c9ff734c..db460c35dc 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleRegisterHookBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleRegisterHookBefore Title: actionModuleRegisterHookBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md index ece3f53868..d72ed21c86 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleUnRegisterHookAfter Title: actionModuleUnRegisterHookAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md index eeee8215a8..5df349eede 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUnRegisterHookBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleUnRegisterHookBefore Title: actionModuleUnRegisterHookBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md index 7e70a22268..18773e5e97 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleUninstallAfter Title: actionModuleUninstallAfter hidden: true hookTitle: actionModuleUninstallAfter diff --git a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md index 1f12816ef4..3c3b23bfe6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionModuleUninstallBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionModuleUninstallBefore Title: actionModuleUninstallBefore hidden: true hookTitle: actionModuleUninstallBefore diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md index 788b9f71f4..080873e066 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionNewsletterRegistrationAfter Title: actionNewsletterRegistrationAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md index 488891e039..d2c62ef263 100644 --- a/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionNewsletterRegistrationBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionNewsletterRegistrationBefore Title: actionNewsletterRegistrationBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md index 849be7bdf9..1b4866ccde 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectAddAfter Title: actionObjectAddAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md index 2b4115246c..869b50f7ba 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectAddBefore Title: actionObjectAddBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md index db85cd2740..e18461b38d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectDeleteAfter Title: actionObjectDeleteAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md index 48ecb10f31..7e8a8bc909 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectDeleteBefore Title: actionObjectDeleteBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md index b433e9187e..fede028b14 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectUpdateAfter Title: actionObjectUpdateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md index 77e845cb56..7894f30524 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectUpdateBefore Title: actionObjectUpdateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md index ae5b612343..e1ae78bac5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectAddAfter Title: actionObjectAddAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md index abbfe2cb3c..5b0c122c4c 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAddBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectAddBefore Title: actionObjectAddBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md index 5542f3d040..e8c82cf125 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeAddBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectAttributeAddBefore Title: actionObjectAttributeAddBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md index c93a3decde..2a10504fd4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectAttributeGroupAddBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectAttributeGroupAddBefore Title: actionObjectAttributeGroupAddBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md index 2091fa5653..7b97a94e3e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectDeleteAfter Title: actionObjectDeleteAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md index 1c9025e02a..bc371abf5b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectDeleteBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectDeleteBefore Title: actionObjectDeleteBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md index 036123a306..01fb789e29 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductCommentValidateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectProductCommentValidateAfter Title: actionObjectProductCommentValidateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md index 3fff006b97..9f8471f1d4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectProductInCartDeleteAfter Title: actionObjectProductInCartDeleteAfter hidden: true hookTitle: 'Cart product removal' diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md index ae2eaea031..b5b3c5d86f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectProductInCartDeleteBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectProductInCartDeleteBefore Title: actionObjectProductInCartDeleteBefore hidden: true hookTitle: 'Cart product removal' diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md index de66a75f38..b1dff5faa3 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectUpdateAfter Title: actionObjectUpdateAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md index 69f727bf5a..9d915c0b94 100644 --- a/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionObjectUpdateBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionObjectUpdateBefore Title: actionObjectUpdateBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md b/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md index 33ffc95cd5..72a746a002 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOnImageCutAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOnImageCutAfter Title: actionOnImageCutAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md b/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md index 8dc2479ee5..35d54300e9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOnImageResizeAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOnImageResizeAfter Title: actionOnImageResizeAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md b/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md index b78a1ae1dd..e301d25d88 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderEdited.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOrderEdited Title: actionOrderEdited hidden: true hookTitle: 'Order edited' diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md b/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md index d631c4941b..a0067475a4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderHistoryAddAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOrderHistoryAddAfter Title: actionOrderHistoryAddAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md index e20f6502df..14019b0f24 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderReturn.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOrderReturn Title: actionOrderReturn hidden: true hookTitle: 'Returned product' diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md index a99cc12142..008bfb2c05 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderSlipAdd.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOrderSlipAdd Title: actionOrderSlipAdd hidden: true hookTitle: 'Order slip creation' diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md index a8717610da..629438f6d6 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusPostUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOrderStatusPostUpdate Title: actionOrderStatusPostUpdate hidden: true hookTitle: 'Post update of order status' diff --git a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md index 35447f718b..6dadf78a63 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionOrderStatusUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOrderStatusUpdate Title: actionOrderStatusUpdate hidden: true hookTitle: 'Order status update - Event' diff --git a/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md b/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md index 4660939032..b7a354d392 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionOutputHTMLBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOutputHTMLBefore Title: actionOutputHTMLBefore hidden: true hookTitle: 'Before HTML output' diff --git a/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md b/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md index 7e074cbad2..4a1497f9e8 100644 --- a/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md +++ b/modules/concepts/hooks/list-of-hooks/actionOverrideEmployeeImage.md @@ -1,5 +1,4 @@ --- -menuTitle: actionOverrideEmployeeImage Title: actionOverrideEmployeeImage hidden: true hookTitle: 'Get Employee Image' diff --git a/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md b/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md index 499060cdab..0d50ffe81d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md +++ b/modules/concepts/hooks/list-of-hooks/actionPDFInvoiceRender.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPDFInvoiceRender Title: actionPDFInvoiceRender hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md b/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md index 31f8aeb7b1..7096aed06f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md +++ b/modules/concepts/hooks/list-of-hooks/actionPasswordRenew.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPasswordRenew Title: actionPasswordRenew hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md index 25ee1ed3d3..7e0b08a132 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentCCAdd.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPaymentCCAdd Title: actionPaymentCCAdd hidden: true hookTitle: 'Payment CC added' diff --git a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md index fbff0d2e4b..d515284f48 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/actionPaymentConfirmation.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPaymentConfirmation Title: actionPaymentConfirmation hidden: true hookTitle: 'Payment confirmation' diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentCart.md b/modules/concepts/hooks/list-of-hooks/actionPresentCart.md index 1f32da436a..3dd0888c94 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentCart.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentCart.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPresentCart Title: actionPresentCart hidden: true hookTitle: 'Cart Presenter' diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentModule.md b/modules/concepts/hooks/list-of-hooks/actionPresentModule.md index 872c6d3075..e83d9b8d58 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentModule.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentModule.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPresentModule Title: actionPresentModule hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md b/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md index 638f1c8063..e387d01677 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentOrder.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPresentOrder Title: actionPresentOrder hidden: true hookTitle: 'Order Presenter' diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md b/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md index 7c0d7503d2..022f73a926 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentOrderReturn.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPresentOrderReturn Title: actionPresentOrderReturn hidden: true hookTitle: 'Order Return Presenter' diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md b/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md index 016bfc9ae0..31961bb309 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentPaymentOptions.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPresentPaymentOptions Title: actionPresentPaymentOptions hidden: true hookTitle: 'Payment options Presenter' diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md b/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md index 4dd1cd5000..45405a0797 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentProduct.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPresentProduct Title: actionPresentProduct hidden: true hookTitle: 'Product Presenter' diff --git a/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md b/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md index 1eff5aec37..f4e14c4063 100644 --- a/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md +++ b/modules/concepts/hooks/list-of-hooks/actionPresentProductListing.md @@ -1,5 +1,4 @@ --- -menuTitle: actionPresentProductListing Title: actionPresentProductListing hidden: true hookTitle: 'Product Listing Presenter' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductActivation.md b/modules/concepts/hooks/list-of-hooks/actionProductActivation.md index 9ef70c1d36..2bdba86444 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductActivation.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductActivation.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductActivation Title: actionProductActivation hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md index dd2a55f95f..3a6dbe6cd4 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAdd.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAdd.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductAdd Title: actionProductAdd hidden: true hookTitle: 'Product creation' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md index ffb16ed3c5..6d08d21f42 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductAttributeDelete Title: actionProductAttributeDelete hidden: true hookTitle: 'Product attribute deletion' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md index fac0d9cea9..b5caa9bb8d 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductAttributeUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductAttributeUpdate Title: actionProductAttributeUpdate hidden: true hookTitle: 'Product attribute update' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md index 97a97dee3f..0109d8e0d7 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductCancel.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductCancel.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductCancel Title: actionProductCancel hidden: true hookTitle: 'Product cancelled' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md b/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md index 9bc88b0d94..1ff81f15d0 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductCoverage.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductCoverage Title: actionProductCoverage hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md index 18167b9879..150cb6749e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductDelete.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductDelete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductDelete Title: actionProductDelete hidden: true hookTitle: 'Product deletion' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md index 9de7ab938d..a3354ea40a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductOutOfStock.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductOutOfStock Title: actionProductOutOfStock hidden: true hookTitle: 'Out-of-stock product' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md b/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md index 4c00d7ce5c..854abeec12 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductPriceCalculation.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductPriceCalculation Title: actionProductPriceCalculation hidden: true hookTitle: 'Product Price Calculation' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSave.md b/modules/concepts/hooks/list-of-hooks/actionProductSave.md index c582ab17bf..8047bbc49e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSave.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSave.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductSave Title: actionProductSave hidden: true hookTitle: 'Saving products' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md index 7a7b06e39f..2cc5edac5b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductSearchAfter Title: actionProductSearchAfter hidden: true hookTitle: 'Event triggered after search product completed' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md index 1ee90cf563..e28119be0a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductSearchProviderRunQueryAfter Title: actionProductSearchProviderRunQueryAfter hidden: true hookTitle: 'Runs an action after ProductSearchProviderInterface::RunQuery()' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md index 0236f52f46..d8b4585ca5 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductSearchProviderRunQueryBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductSearchProviderRunQueryBefore Title: actionProductSearchProviderRunQueryBefore hidden: true hookTitle: 'Runs an action before ProductSearchProviderInterface::RunQuery()' diff --git a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md index ae36666e83..be2e569ae2 100644 --- a/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md +++ b/modules/concepts/hooks/list-of-hooks/actionProductUpdate.md @@ -1,5 +1,4 @@ --- -menuTitle: actionProductUpdate Title: actionProductUpdate hidden: true hookTitle: 'Product update' diff --git a/modules/concepts/hooks/list-of-hooks/actionSearch.md b/modules/concepts/hooks/list-of-hooks/actionSearch.md index 3c35290e07..2198ccee2e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSearch.md +++ b/modules/concepts/hooks/list-of-hooks/actionSearch.md @@ -1,5 +1,4 @@ --- -menuTitle: actionSearch Title: actionSearch hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md b/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md index e38dfbe34e..17f4820459 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md +++ b/modules/concepts/hooks/list-of-hooks/actionSetInvoice.md @@ -1,5 +1,4 @@ --- -menuTitle: actionSetInvoice Title: actionSetInvoice hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md b/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md index 117210a16d..722bf0bd3e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md +++ b/modules/concepts/hooks/list-of-hooks/actionShopDataDuplication.md @@ -1,5 +1,4 @@ --- -menuTitle: actionShopDataDuplication Title: actionShopDataDuplication hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md index d5402c1ecf..10390a2a9b 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitAccountBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: actionSubmitAccountBefore Title: actionSubmitAccountBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md b/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md index 02a215d3ba..68b23f6387 100644 --- a/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md +++ b/modules/concepts/hooks/list-of-hooks/actionSubmitCustomerAddressForm.md @@ -1,5 +1,4 @@ --- -menuTitle: actionSubmitCustomerAddressForm Title: actionSubmitCustomerAddressForm hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md b/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md index 03f83ed56a..be976ce859 100644 --- a/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionUpdateLangAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionUpdateLangAfter Title: actionUpdateLangAfter hidden: true hookTitle: 'Update "lang" tables' diff --git a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md index 602bb42fb5..38f53d83b9 100644 --- a/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md +++ b/modules/concepts/hooks/list-of-hooks/actionUpdateQuantity.md @@ -1,5 +1,4 @@ --- -menuTitle: actionUpdateQuantity Title: actionUpdateQuantity hidden: true hookTitle: 'Quantity update' diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md b/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md index 424ca0e3c7..d83ccf1b78 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateCustomerAddressForm.md @@ -1,5 +1,4 @@ --- -menuTitle: actionValidateCustomerAddressForm Title: actionValidateCustomerAddressForm hidden: true hookTitle: 'Customer address form validation' diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md index 5960153566..226104d071 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrder.md @@ -1,5 +1,4 @@ --- -menuTitle: actionValidateOrder Title: actionValidateOrder hidden: true hookTitle: 'New orders' diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md b/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md index d089b017f1..96008fe277 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateOrderAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: actionValidateOrderAfter Title: actionValidateOrderAfter hidden: true hookTitle: 'After validating an order' diff --git a/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md b/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md index a050ee4d33..c82b9fa29e 100644 --- a/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md +++ b/modules/concepts/hooks/list-of-hooks/actionValidateStepComplete.md @@ -1,5 +1,4 @@ --- -menuTitle: actionValidateStepComplete Title: actionValidateStepComplete hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/actionWatermark.md b/modules/concepts/hooks/list-of-hooks/actionWatermark.md index 638eb612a2..a7a41a8e0f 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWatermark.md +++ b/modules/concepts/hooks/list-of-hooks/actionWatermark.md @@ -1,5 +1,4 @@ --- -menuTitle: actionWatermark Title: actionWatermark hidden: true hookTitle: Watermark diff --git a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md index b2fa82ae4d..ba3538094a 100644 --- a/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md +++ b/modules/concepts/hooks/list-of-hooks/actionWishlistAddProduct.md @@ -1,5 +1,4 @@ --- -menuTitle: actionWishlistAddProduct Title: actionWishlistAddProduct hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md b/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md index 6a90f5a9f2..500042bece 100644 --- a/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md +++ b/modules/concepts/hooks/list-of-hooks/addWebserviceResources.md @@ -1,5 +1,4 @@ --- -menuTitle: addWebserviceResources Title: addWebserviceResources hidden: true hookTitle: 'Add extra webservice resource' diff --git a/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md index 4c4f6b1325..81a224eb29 100644 --- a/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/additionalCustomerAddressFields.md @@ -1,5 +1,4 @@ --- -menuTitle: additionalCustomerAddressFields Title: additionalCustomerAddressFields hidden: true hookTitle: 'Add fields to the Customer address form' diff --git a/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md b/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md index 80e4587ffd..97424a8a3a 100644 --- a/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md +++ b/modules/concepts/hooks/list-of-hooks/additionalCustomerFormFields.md @@ -1,5 +1,4 @@ --- -menuTitle: additionalCustomerFormFields Title: additionalCustomerFormFields hidden: true hookTitle: 'Add fields to the Customer form' diff --git a/modules/concepts/hooks/list-of-hooks/dashboardData.md b/modules/concepts/hooks/list-of-hooks/dashboardData.md index 7ead501547..02e2cb14be 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardData.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardData.md @@ -1,5 +1,4 @@ --- -menuTitle: dashboardData Title: dashboardData hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md index 93cfe89d17..a419119489 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneOne.md @@ -1,5 +1,4 @@ --- -menuTitle: dashboardZoneOne Title: dashboardZoneOne hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md index eb55e8de0c..7f586222ca 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneThree.md @@ -1,5 +1,4 @@ --- -menuTitle: dashboardZoneThree Title: dashboardZoneThree hidden: true hookTitle: 'Dashboard column three' diff --git a/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md b/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md index 1ff836cff4..521510fca9 100644 --- a/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md +++ b/modules/concepts/hooks/list-of-hooks/dashboardZoneTwo.md @@ -1,5 +1,4 @@ --- -menuTitle: dashboardZoneTwo Title: dashboardZoneTwo hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md b/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md index d79abb1672..ce5015c9d0 100644 --- a/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md +++ b/modules/concepts/hooks/list-of-hooks/deleteProductAttribute.md @@ -1,5 +1,4 @@ --- -menuTitle: deleteProductAttribute Title: deleteProductAttribute hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md index 56e8c70046..479a88ba90 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdditionalCustomerAddressFields.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdditionalCustomerAddressFields Title: displayAdditionalCustomerAddressFields hidden: true hookTitle: 'Display additional customer address fields' diff --git a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md index 4b6fafa990..fee34614e5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAddressSelectorBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAddressSelectorBottom Title: displayAddressSelectorBottom hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md b/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md index 1ece151fe2..f5b8d81343 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminAfterHeader.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminAfterHeader Title: displayAdminAfterHeader hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md index 13f3a8e477..ec135bf145 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminCustomers.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminCustomers Title: displayAdminCustomers hidden: true hookTitle: 'Display new elements in the Back Office, tab AdminCustomers' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md b/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md index 1334e75340..ffeb7ebe8c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminEndContent.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminEndContent Title: displayAdminEndContent hidden: true hookTitle: 'Administration end of content' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminForm.md b/modules/concepts/hooks/list-of-hooks/displayAdminForm.md index cfe65e1493..904faa0cad 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminForm.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminForm Title: displayAdminForm hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md index 60467cbe1c..9f39b20a7c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminGridTableAfter Title: displayAdminGridTableAfter hidden: true hookTitle: 'Display after Grid table' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md index c75a30a4fd..ea1fb03124 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminGridTableBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminGridTableBefore Title: displayAdminGridTableBefore hidden: true hookTitle: 'Display before Grid table' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md index 47551aff3b..d8d721609e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminListAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminListAfter Title: displayAdminListAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md b/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md index 93aacb9a72..9bb7a99cce 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminListBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminListBefore Title: displayAdminListBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md b/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md index 95cc723764..37567c2111 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminNavBarBeforeEnd.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminNavBarBeforeEnd Title: displayAdminNavBarBeforeEnd hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md b/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md index 87f96eb423..e5a2233ae6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOptions.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOptions Title: displayAdminOptions hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md index b6453b1ef6..00fafab473 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrder.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrder Title: displayAdminOrder hidden: true hookTitle: 'Display new elements in the Back Office, tab AdminOrder' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md index 2833612efb..1ee403ee32 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderCreateExtraButtons.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderCreateExtraButtons Title: displayAdminOrderCreateExtraButtons hidden: true hookTitle: 'Add buttons on the create order page dropdown' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md index 4c16d14156..259e2dd744 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMain.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderMain Title: displayAdminOrderMain hidden: true hookTitle: 'Admin Order Main Column' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md index 033092ee25..8a268cb859 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderMainBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderMainBottom Title: displayAdminOrderMainBottom hidden: true hookTitle: 'Admin Order Main Column Bottom' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md index f19a587798..b7691035d2 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSide.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderSide Title: displayAdminOrderSide hidden: true hookTitle: 'Admin Order Side Column' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md index 36aa9f0d2d..f86b1926c5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderSideBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderSideBottom Title: displayAdminOrderSideBottom hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md index b5090c9692..99ecfd52f6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabContent.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderTabContent Title: displayAdminOrderTabContent hidden: true hookTitle: 'Display new elements in the Back Office, tab contents on order' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md index e830ddec39..ac69cbecfa 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTabLink.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderTabLink Title: displayAdminOrderTabLink hidden: true hookTitle: 'Display new elements in the Back Office, tab links on order' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md index a6c6eb8d36..9694dca01e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminOrderTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminOrderTop Title: displayAdminOrderTop hidden: true hookTitle: 'Display new elements in the Back Office, top of Order page' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md index b55ae3ccee..fd11cd54f3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsCombinationBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsCombinationBottom Title: displayAdminProductsCombinationBottom hidden: true hookTitle: 'Display new elements in back office product page, Combination tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md index ac784ad9cc..95c2e0eab7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsExtra.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsExtra Title: displayAdminProductsExtra hidden: true hookTitle: 'Display new elements in back office product page, Extra tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md index cd470b2839..7f2d379b79 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsMainStepLeftColumnBottom Title: displayAdminProductsMainStepLeftColumnBottom hidden: true hookTitle: 'Display new elements in back office product page, left column of the Basic settings tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md index 3cc493dc29..d97436d756 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepLeftColumnMiddle.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsMainStepLeftColumnMiddle Title: displayAdminProductsMainStepLeftColumnMiddle hidden: true hookTitle: 'Display new elements in back office product page, left column of the Basic settings tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md index 856cad0a6b..b36ae0b495 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsMainStepRightColumnBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsMainStepRightColumnBottom Title: displayAdminProductsMainStepRightColumnBottom hidden: true hookTitle: 'Display new elements in back office product page, right column of the Basic settings tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md index 2efca3440f..49c0ef6ced 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsOptionsStepBottom Title: displayAdminProductsOptionsStepBottom hidden: true hookTitle: 'Display new elements in back office product page, Options tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md index 670e15288d..960e79b142 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsOptionsStepTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsOptionsStepTop Title: displayAdminProductsOptionsStepTop hidden: true hookTitle: 'Display new elements in back office product page, Options tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md index 1de8ada642..f9555af606 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsPriceStepBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsPriceStepBottom Title: displayAdminProductsPriceStepBottom hidden: true hookTitle: 'Display new elements in back office product page, Price tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md index d0f0cfc15b..30c7d6eeae 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsQuantitiesStepBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsQuantitiesStepBottom Title: displayAdminProductsQuantitiesStepBottom hidden: true hookTitle: 'Display new elements in back office product page, Quantities/Combinations tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md index 3e216481d4..22e4274522 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsSeoStepBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsSeoStepBottom Title: displayAdminProductsSeoStepBottom hidden: true hookTitle: 'Display new elements in back office product page, SEO tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md b/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md index 95f320eb07..7366f75309 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminProductsShippingStepBottom.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminProductsShippingStepBottom Title: displayAdminProductsShippingStepBottom hidden: true hookTitle: 'Display new elements in back office product page, Shipping tab' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md index 6e6f8dfbbf..86485a332b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGraphEngine.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminStatsGraphEngine Title: displayAdminStatsGraphEngine hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md index d838d1b70a..80ffe6bc50 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsGridEngine.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminStatsGridEngine Title: displayAdminStatsGridEngine hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md index 770e332d0e..1d7f0cff81 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminStatsModules.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminStatsModules Title: displayAdminStatsModules hidden: true hookTitle: 'Stats - Modules' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md b/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md index 85aa18e65c..7580b83e9b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminThemesListAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminThemesListAfter Title: displayAdminThemesListAfter hidden: true hookTitle: 'BO themes list extra content' diff --git a/modules/concepts/hooks/list-of-hooks/displayAdminView.md b/modules/concepts/hooks/list-of-hooks/displayAdminView.md index 0d195b4178..5f039dfafb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAdminView.md +++ b/modules/concepts/hooks/list-of-hooks/displayAdminView.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAdminView Title: displayAdminView hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md index d181b6c7bc..ddda5887d9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterBodyOpeningTag.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAfterBodyOpeningTag Title: displayAfterBodyOpeningTag hidden: true hookTitle: 'Very top of pages' diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md b/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md index 8941577834..4a2ee8514f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterCarrier.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAfterCarrier Title: displayAfterCarrier hidden: true hookTitle: 'After carriers list' diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md index a634b9ef72..7604983775 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterProductThumbs.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAfterProductThumbs Title: displayAfterProductThumbs hidden: true hookTitle: 'Display extra content below product thumbs' diff --git a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md index b410ceadd8..fbd6f591b4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayAfterTitleTag.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAfterTitleTag Title: displayAfterTitleTag hidden: true hookTitle: 'After title tag' diff --git a/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md index 68d3f9a9ca..3ec60ad19f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayAttributeForm.md @@ -1,5 +1,4 @@ --- -menuTitle: displayAttributeForm Title: displayAttributeForm hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md index 7e64079420..3fecad93a6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeCategory.md @@ -1,5 +1,4 @@ --- -menuTitle: displaybackOfficeCategory Title: displaybackOfficeCategory hidden: true hookTitle: 'Display new elements in the Back Office, tab AdminCategories' diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md index 387f0154c3..04b8b58a5c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeEmployeeMenu.md @@ -1,5 +1,4 @@ --- -menuTitle: displaybackOfficeEmployeeMenu Title: displaybackOfficeEmployeeMenu hidden: true hookTitle: 'Administration Employee menu' diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md index 6524c3ff04..bf0393c962 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeHeader.md @@ -1,5 +1,4 @@ --- -menuTitle: displaybackOfficeHeader Title: displaybackOfficeHeader hidden: true hookTitle: 'Administration panel header' diff --git a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md index 76fa2454e0..064568f84e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayBackOfficeTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displaybackOfficeTop Title: displaybackOfficeTop hidden: true hookTitle: 'Administration panel hover the tabs' diff --git a/modules/concepts/hooks/list-of-hooks/displayBanner.md b/modules/concepts/hooks/list-of-hooks/displayBanner.md index 362e20b4d8..083ba4b76c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBanner.md +++ b/modules/concepts/hooks/list-of-hooks/displayBanner.md @@ -1,5 +1,4 @@ --- -menuTitle: displayBanner Title: displayBanner hidden: true hookTitle: 'Very top of pages' diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md index ae12b03b5a..a30559de7b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeBodyClosingTag.md @@ -1,5 +1,4 @@ --- -menuTitle: displayBeforeBodyClosingTag Title: displayBeforeBodyClosingTag hidden: true hookTitle: 'Very bottom of pages' diff --git a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md index d30e9385e5..a899b627ba 100644 --- a/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md +++ b/modules/concepts/hooks/list-of-hooks/displayBeforeCarrier.md @@ -1,5 +1,4 @@ --- -menuTitle: displayBeforeCarrier Title: displayBeforeCarrier hidden: true hookTitle: 'Before carriers list' diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md index 52c5a43aa1..45edec4435 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSDisputeInformation.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCMSDisputeInformation Title: displayCMSDisputeInformation hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md index 9c6886314f..1d358f98fd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md +++ b/modules/concepts/hooks/list-of-hooks/displayCMSPrintButton.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCMSPrintButton Title: displayCMSPrintButton hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md b/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md index 8613fa149b..b30886411b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCarrierExtraContent.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCarrierExtraContent Title: displayCarrierExtraContent hidden: true hookTitle: 'Display additional content for a carrier (e.g pickup points)' diff --git a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md index 838cb3e810..e8448c17be 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartExtraProductActions.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCartExtraProductActions Title: displayCartExtraProductActions hidden: true hookTitle: 'Extra buttons in shopping cart' diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md index 1d48b19a0e..6dd6ffa714 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalContent.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCartModalContent Title: displayCartModalContent hidden: true hookTitle: 'Content of Add-to-cart modal' diff --git a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md index 63e9a54aaf..8bf3c48d10 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCartModalFooter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCartModalFooter Title: displayCartModalFooter hidden: true hookTitle: 'Bottom of Add-to-cart modal' diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md index e5e48627a8..f479e9bcf5 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutBeforeConfirmation.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCheckoutBeforeConfirmation Title: displayCheckoutBeforeConfirmation hidden: true hookTitle: 'Show custom content before checkout confirmation' diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md index eac1877bb3..83ea91e4a0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSubtotalDetails.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCheckoutSubtotalDetails Title: displayCheckoutSubtotalDetails hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md index edc53ffb12..5b3b32fa4e 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCheckoutSummaryTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCheckoutSummaryTop Title: displayCheckoutSummaryTop hidden: true hookTitle: 'Cart summary top' diff --git a/modules/concepts/hooks/list-of-hooks/displayContactContent.md b/modules/concepts/hooks/list-of-hooks/displayContactContent.md index fbac0ce0d2..b24c82caf6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactContent.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactContent.md @@ -1,5 +1,4 @@ --- -menuTitle: displayContactContent Title: displayContactContent hidden: true hookTitle: 'Content wrapper section of the contact page' diff --git a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md index b5d3d5491c..f6eb5b6813 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactLeftColumn.md @@ -1,5 +1,4 @@ --- -menuTitle: displayContactLeftColumn Title: displayContactLeftColumn hidden: true hookTitle: 'Left column blocks on the contact page' diff --git a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md index 418885f2f5..147293fa87 100644 --- a/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayContactRightColumn.md @@ -1,5 +1,4 @@ --- -menuTitle: displayContactRightColumn Title: displayContactRightColumn hidden: true hookTitle: 'Right column blocks of the contact page' diff --git a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md index 4bcf8f7698..64b8629846 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayCrossSellingShoppingCart.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCrossSellingShoppingCart Title: displayCrossSellingShoppingCart hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md index b8fa708409..b83aa1b3b7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccount.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCustomerAccount Title: displayCustomerAccount hidden: true hookTitle: 'Customer account displayed in Front Office' diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md index 4bb3f2a1d9..94849e81e8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountForm.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCustomerAccountForm Title: displayCustomerAccountForm hidden: true hookTitle: 'Customer account creation form' diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md index f6b27e5d6c..e3ae56602c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerAccountFormTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCustomerAccountFormTop Title: displayCustomerAccountFormTop hidden: true hookTitle: 'Block above the form for create an account' diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md index edddb700d9..ebb3448192 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomerLoginFormAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCustomerLoginFormAfter Title: displayCustomerLoginFormAfter hidden: true hookTitle: 'Display elements after login form' diff --git a/modules/concepts/hooks/list-of-hooks/displayCustomization.md b/modules/concepts/hooks/list-of-hooks/displayCustomization.md index 9fc6e6c360..0515c42906 100644 --- a/modules/concepts/hooks/list-of-hooks/displayCustomization.md +++ b/modules/concepts/hooks/list-of-hooks/displayCustomization.md @@ -1,5 +1,4 @@ --- -menuTitle: displayCustomization Title: displayCustomization hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md index 2d214ae5cd..12879b04b7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarIcons.md @@ -1,5 +1,4 @@ --- -menuTitle: displayDashboardToolbarIcons Title: displayDashboardToolbarIcons hidden: true hookTitle: 'Display new elements in back office page with dashboard, on icons list' diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md index 8353efb451..d21c0e5bc0 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardToolbarTopMenu.md @@ -1,5 +1,4 @@ --- -menuTitle: displayDashboardToolbarTopMenu Title: displayDashboardToolbarTopMenu hidden: true hookTitle: 'Display new elements in back office page with a dashboard, on top Menu' diff --git a/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md b/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md index 1e3cdca7e9..40e9ca7b84 100644 --- a/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayDashboardTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayDashboardTop Title: displayDashboardTop hidden: true hookTitle: 'Dashboard Top' diff --git a/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md b/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md index 1aaa58acc9..0a35ed78a3 100644 --- a/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md +++ b/modules/concepts/hooks/list-of-hooks/displayEmptyModuleCategoryExtraMessage.md @@ -1,5 +1,4 @@ --- -menuTitle: displayEmptyModuleCategoryExtraMessage Title: displayEmptyModuleCategoryExtraMessage hidden: true hookTitle: 'Extra message to display for an empty modules category' diff --git a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md index 7f450ebe9c..aa50ce328f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md +++ b/modules/concepts/hooks/list-of-hooks/displayExpressCheckout.md @@ -1,5 +1,4 @@ --- -menuTitle: displayExpressCheckout Title: displayExpressCheckout hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md index 6f49dbedcd..87603825d7 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureForm.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFeatureForm Title: displayFeatureForm hidden: true hookTitle: "Add fields to the form 'feature'" diff --git a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md index 297e0c2595..e8535cfe1d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeaturePostProcess.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFeaturePostProcess Title: displayFeaturePostProcess hidden: true hookTitle: 'On post-process in admin feature' diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md b/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md index 67cb3e1fa6..3d1348d2aa 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureValueForm.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFeatureValueForm Title: displayFeatureValueForm hidden: true hookTitle: "Add fields to the form 'feature value'" diff --git a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md index a85b132e89..2a6cbb60a8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md +++ b/modules/concepts/hooks/list-of-hooks/displayFeatureValuePostProcess.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFeatureValuePostProcess Title: displayFeatureValuePostProcess hidden: true hookTitle: 'On post-process in admin feature value' diff --git a/modules/concepts/hooks/list-of-hooks/displayFooter.md b/modules/concepts/hooks/list-of-hooks/displayFooter.md index 85b9109509..e4e7585eb8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFooter Title: displayFooter hidden: true hookTitle: Footer diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md index d9d18f653e..25cb5a80f9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterAfter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFooterAfter Title: displayFooterAfter hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md index 727c194f81..6cf95a9ce6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterBefore.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFooterBefore Title: displayFooterBefore hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md index 999d2a035f..03b493dbcd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterCategory.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFooterCategory Title: displayFooterCategory hidden: true hookTitle: 'This hook adds new blocks under the products listing in a category/search' diff --git a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md index 91c58575e0..3345703cbb 100644 --- a/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayFooterProduct.md @@ -1,5 +1,4 @@ --- -menuTitle: displayFooterProduct Title: displayFooterProduct hidden: true hookTitle: 'Product footer' diff --git a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md index 465c3814a8..3e0ca6f8d6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md +++ b/modules/concepts/hooks/list-of-hooks/displayGDPRConsent.md @@ -1,5 +1,4 @@ --- -menuTitle: displayGDPRConsent Title: displayGDPRConsent hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayHeader.md b/modules/concepts/hooks/list-of-hooks/displayHeader.md index e0f43adf80..17a30a973c 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeader.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeader.md @@ -1,5 +1,4 @@ --- -menuTitle: displayHeader Title: displayHeader hidden: true hookTitle: 'Pages html head section' diff --git a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md index 349f6ec5c2..b93c1bcfe6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md +++ b/modules/concepts/hooks/list-of-hooks/displayHeaderCategory.md @@ -1,5 +1,4 @@ --- -menuTitle: displayHeaderCategory Title: displayHeaderCategory hidden: true hookTitle: 'Footer above of the product list' diff --git a/modules/concepts/hooks/list-of-hooks/displayHome.md b/modules/concepts/hooks/list-of-hooks/displayHome.md index 3da5c00325..091fbb2546 100644 --- a/modules/concepts/hooks/list-of-hooks/displayHome.md +++ b/modules/concepts/hooks/list-of-hooks/displayHome.md @@ -1,5 +1,4 @@ --- -menuTitle: displayHome Title: displayHome hidden: true hookTitle: 'Homepage content' diff --git a/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md b/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md index 5064764cfd..49c7e92128 100644 --- a/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md +++ b/modules/concepts/hooks/list-of-hooks/displayInvoiceLegalFreeText.md @@ -1,5 +1,4 @@ --- -menuTitle: displayInvoiceLegalFreeText Title: displayInvoiceLegalFreeText hidden: true hookTitle: 'PDF Invoice - Legal Free Text' diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md index a85fece483..917ee6ccca 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumn.md @@ -1,5 +1,4 @@ --- -menuTitle: displayLeftColumn Title: displayLeftColumn hidden: true hookTitle: 'New elements on a page (left column)' diff --git a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md index d6e41a642b..464ba6e9b6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayLeftColumnProduct.md @@ -1,5 +1,4 @@ --- -menuTitle: displayLeftColumnProduct Title: displayLeftColumnProduct hidden: true hookTitle: 'New elements on the product page (left column)' diff --git a/modules/concepts/hooks/list-of-hooks/displayMaintenance.md b/modules/concepts/hooks/list-of-hooks/displayMaintenance.md index 2c79334e56..bd349b3f98 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMaintenance.md +++ b/modules/concepts/hooks/list-of-hooks/displayMaintenance.md @@ -1,5 +1,4 @@ --- -menuTitle: displayMaintenance Title: displayMaintenance hidden: true hookTitle: 'Maintenance Page' diff --git a/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md b/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md index 64e9562ea4..731d37792b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md +++ b/modules/concepts/hooks/list-of-hooks/displayModuleConfigureExtraButtons.md @@ -1,5 +1,4 @@ --- -menuTitle: displayModuleConfigureExtraButons Title: displayModuleConfigureExtraButons hidden: true hookTitle: 'Module configuration - After toolbar buttons' diff --git a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md index 988979e78b..073e642529 100644 --- a/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayMyAccountBlock.md @@ -1,5 +1,4 @@ --- -menuTitle: displayMyAccountBlock Title: displayMyAccountBlock hidden: true hookTitle: 'My account block' diff --git a/modules/concepts/hooks/list-of-hooks/displayNav1.md b/modules/concepts/hooks/list-of-hooks/displayNav1.md index 4ccb9e534b..67a1800d0b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav1.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav1.md @@ -1,5 +1,4 @@ --- -menuTitle: displayNav1 Title: displayNav1 hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayNav2.md b/modules/concepts/hooks/list-of-hooks/displayNav2.md index 8f14bd9959..fc2be5dbbd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNav2.md +++ b/modules/concepts/hooks/list-of-hooks/displayNav2.md @@ -1,5 +1,4 @@ --- -menuTitle: displayNav2 Title: displayNav2 hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md index bb20ec94a4..ec85fa5784 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md +++ b/modules/concepts/hooks/list-of-hooks/displayNavFullWidth.md @@ -1,5 +1,4 @@ --- -menuTitle: displayNavFullWidth Title: displayNavFullWidth hidden: true hookTitle: Navigation diff --git a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md index 3c620e3a2e..be6523d2ce 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md +++ b/modules/concepts/hooks/list-of-hooks/displayNewsletterRegistration.md @@ -1,5 +1,4 @@ --- -menuTitle: displayNewsletterRegistration Title: displayNewsletterRegistration hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayNotFound.md b/modules/concepts/hooks/list-of-hooks/displayNotFound.md index 876776a094..2507334296 100644 --- a/modules/concepts/hooks/list-of-hooks/displayNotFound.md +++ b/modules/concepts/hooks/list-of-hooks/displayNotFound.md @@ -1,5 +1,4 @@ --- -menuTitle: displayNotFound Title: displayNotFound hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md index c2389959bd..8751e522f8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation.md @@ -1,5 +1,4 @@ --- -menuTitle: displayOrderConfirmation Title: displayOrderConfirmation hidden: true hookTitle: 'Order confirmation page' diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md index 0791c88d55..b25aa154e9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation1.md @@ -1,5 +1,4 @@ --- -menuTitle: displayOrderConfirmation1 Title: displayOrderConfirmation1 hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md index 2df9bed8dd..1c64de0e90 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderConfirmation2.md @@ -1,5 +1,4 @@ --- -menuTitle: displayOrderConfirmation2 Title: displayOrderConfirmation2 hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md index 2de498edc3..eff4a8b1a6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderDetail.md @@ -1,5 +1,4 @@ --- -menuTitle: displayOrderDetail Title: displayOrderDetail hidden: true hookTitle: 'Order detail' diff --git a/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md b/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md index 7318a3014e..fbb4065ec4 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md +++ b/modules/concepts/hooks/list-of-hooks/displayOrderPreview.md @@ -1,5 +1,4 @@ --- -menuTitle: displayOrderPreview Title: displayOrderPreview hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md b/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md index 58f9778427..6139d9fcb8 100644 --- a/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md +++ b/modules/concepts/hooks/list-of-hooks/displayOverrideTemplate.md @@ -1,5 +1,4 @@ --- -menuTitle: displayOverrideTemplate Title: displayOverrideTemplate hidden: true hookTitle: 'Change the default template of current controller' diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md index 1a6b24f4ea..d5caee36ee 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentByBinaries.md @@ -1,5 +1,4 @@ --- -menuTitle: displayPaymentByBinaries Title: displayPaymentByBinaries hidden: true hookTitle: 'Payment form generated by binaries' diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md index d5cba67110..28722cb429 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentReturn.md @@ -1,5 +1,4 @@ --- -menuTitle: displayPaymentReturn Title: displayPaymentReturn hidden: true hookTitle: 'Payment return' diff --git a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md index c896c25d53..494f264b19 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPaymentTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayPaymentTop Title: displayPaymentTop hidden: true hookTitle: 'Top of payment page' diff --git a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md index 4afa776a8b..6a3cb7a64b 100644 --- a/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayPersonalInformationTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayPersonalInformationTop Title: displayPersonalInformationTop hidden: true hookTitle: 'Content in the checkout funnel, on top of the personal information panel' diff --git a/modules/concepts/hooks/list-of-hooks/displayProductActions.md b/modules/concepts/hooks/list-of-hooks/displayProductActions.md index e2466d2a58..a0936adccc 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductActions.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductActions.md @@ -1,5 +1,4 @@ --- -menuTitle: displayProductActions Title: displayProductActions hidden: true hookTitle: 'Display additional action button on the product page' diff --git a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md index cc269af3e1..ce2dd97d7d 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductAdditionalInfo.md @@ -1,5 +1,4 @@ --- -menuTitle: displayProductAdditionalInfo Title: displayProductAdditionalInfo hidden: true hookTitle: 'Product page additional info' diff --git a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md index d9246d8a99..39eca25835 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductListReviews.md @@ -1,5 +1,4 @@ --- -menuTitle: displayProductListReviews Title: displayProductListReviews hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md index 4792338335..7cfeb41c89 100644 --- a/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md +++ b/modules/concepts/hooks/list-of-hooks/displayProductPriceBlock.md @@ -1,5 +1,4 @@ --- -menuTitle: displayProductPriceBlock Title: displayProductPriceBlock hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayReassurance.md b/modules/concepts/hooks/list-of-hooks/displayReassurance.md index 8911a7600a..6a02ee74fd 100644 --- a/modules/concepts/hooks/list-of-hooks/displayReassurance.md +++ b/modules/concepts/hooks/list-of-hooks/displayReassurance.md @@ -1,5 +1,4 @@ --- -menuTitle: displayReassurance Title: displayReassurance hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md index 4e23c8647e..2b1a325307 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumn.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumn.md @@ -1,5 +1,4 @@ --- -menuTitle: displayRightColumn Title: displayRightColumn hidden: true hookTitle: 'New elements on a page (right column)' diff --git a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md index b7dbffb38f..307ebc507a 100644 --- a/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md +++ b/modules/concepts/hooks/list-of-hooks/displayRightColumnProduct.md @@ -1,5 +1,4 @@ --- -menuTitle: displayRightColumnProduct Title: displayRightColumnProduct hidden: true hookTitle: 'New elements on the product page (right column)' diff --git a/modules/concepts/hooks/list-of-hooks/displaySearch.md b/modules/concepts/hooks/list-of-hooks/displaySearch.md index 1103880a2e..8dc2b5ae4b 100644 --- a/modules/concepts/hooks/list-of-hooks/displaySearch.md +++ b/modules/concepts/hooks/list-of-hooks/displaySearch.md @@ -1,5 +1,4 @@ --- -menuTitle: displaySearch Title: displaySearch hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md index ae48874565..48deab57f6 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCart.md @@ -1,5 +1,4 @@ --- -menuTitle: displayShoppingCart Title: displayShoppingCart hidden: true hookTitle: 'Shopping cart - Additional button' diff --git a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md index f252b55550..a7e62eda5f 100644 --- a/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md +++ b/modules/concepts/hooks/list-of-hooks/displayShoppingCartFooter.md @@ -1,5 +1,4 @@ --- -menuTitle: displayShoppingCartFooter Title: displayShoppingCartFooter hidden: true hookTitle: 'Shopping cart footer' diff --git a/modules/concepts/hooks/list-of-hooks/displayTop.md b/modules/concepts/hooks/list-of-hooks/displayTop.md index 3affda4244..f909f6f0b9 100644 --- a/modules/concepts/hooks/list-of-hooks/displayTop.md +++ b/modules/concepts/hooks/list-of-hooks/displayTop.md @@ -1,5 +1,4 @@ --- -menuTitle: displayTop Title: displayTop hidden: true hookTitle: 'Top of pages' diff --git a/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md b/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md index 93e6f17fc6..053d72e257 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCategoryContent.md @@ -1,5 +1,4 @@ --- -menuTitle: filterCategoryContent Title: filterCategoryContent hidden: true hookTitle: 'Filter the content page category' diff --git a/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md b/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md index ad0d0da8be..8f840506aa 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCmsCategoryContent.md @@ -1,5 +1,4 @@ --- -menuTitle: filterCmsCategoryContent Title: filterCmsCategoryContent hidden: true hookTitle: 'Filter the content page category' diff --git a/modules/concepts/hooks/list-of-hooks/filterCmsContent.md b/modules/concepts/hooks/list-of-hooks/filterCmsContent.md index ddacccf54e..b953ba3bab 100644 --- a/modules/concepts/hooks/list-of-hooks/filterCmsContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterCmsContent.md @@ -1,5 +1,4 @@ --- -menuTitle: filterCmsContent Title: filterCmsContent hidden: true hookTitle: 'Filter the content page' diff --git a/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md b/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md index f1ad3a49bb..bde4419f40 100644 --- a/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterHtmlContent.md @@ -1,5 +1,4 @@ --- -menuTitle: filterHtmlContent Title: filterHtmlContent hidden: true hookTitle: 'Filter HTML field before rending a page' diff --git a/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md b/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md index befb8885c4..7e97cfaf41 100644 --- a/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterManufacturerContent.md @@ -1,5 +1,4 @@ --- -menuTitle: filterManufacturerContent Title: filterManufacturerContent hidden: true hookTitle: 'Filter the content page manufacturer' diff --git a/modules/concepts/hooks/list-of-hooks/filterProductContent.md b/modules/concepts/hooks/list-of-hooks/filterProductContent.md index d6ea1443fa..2c3899bb14 100644 --- a/modules/concepts/hooks/list-of-hooks/filterProductContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterProductContent.md @@ -1,5 +1,4 @@ --- -menuTitle: filterProductContent Title: filterProductContent hidden: true hookTitle: 'Filter the content page product' diff --git a/modules/concepts/hooks/list-of-hooks/filterProductSearch.md b/modules/concepts/hooks/list-of-hooks/filterProductSearch.md index 7684c57482..154c3cdef7 100644 --- a/modules/concepts/hooks/list-of-hooks/filterProductSearch.md +++ b/modules/concepts/hooks/list-of-hooks/filterProductSearch.md @@ -1,5 +1,4 @@ --- -menuTitle: filterProductSearch Title: filterProductSearch hidden: true hookTitle: 'Filter search products result' diff --git a/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md b/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md index 3a83f1a86f..24a4be8656 100644 --- a/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md +++ b/modules/concepts/hooks/list-of-hooks/filterSupplierContent.md @@ -1,5 +1,4 @@ --- -menuTitle: filterSupplierContent Title: filterSupplierContent hidden: true hookTitle: 'Filter the content page supplier' diff --git a/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md b/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md index 4478edc596..fe8b30aa24 100644 --- a/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md +++ b/modules/concepts/hooks/list-of-hooks/gSitemapAppendUrls.md @@ -1,5 +1,4 @@ --- -menuTitle: gSitemapAppendUrls Title: gSitemapAppendUrls hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md b/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md index 32374e10c7..a0a22b4615 100644 --- a/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md +++ b/modules/concepts/hooks/list-of-hooks/legacyblockkpi.md @@ -1,5 +1,4 @@ --- -menuTitle: legacyblockkpi Title: legacyblockkpi hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/moduleRoutes.md b/modules/concepts/hooks/list-of-hooks/moduleRoutes.md index 181a8aa9a4..b9f46f2705 100644 --- a/modules/concepts/hooks/list-of-hooks/moduleRoutes.md +++ b/modules/concepts/hooks/list-of-hooks/moduleRoutes.md @@ -1,5 +1,4 @@ --- -menuTitle: moduleRoutes Title: moduleRoutes hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md b/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md index e3fb64fc32..3ae912cbae 100644 --- a/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md +++ b/modules/concepts/hooks/list-of-hooks/overrideLayoutTemplate.md @@ -1,5 +1,4 @@ --- -menuTitle: overrideLayoutTemplate Title: overrideLayoutTemplate hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md b/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md index 254d93502b..928319b726 100644 --- a/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md +++ b/modules/concepts/hooks/list-of-hooks/overrideMinimalPurchasePrice.md @@ -1,5 +1,4 @@ --- -menuTitle: overrideMinimalPurchasePrice Title: overrideMinimalPurchasePrice hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/productSearchProvider.md b/modules/concepts/hooks/list-of-hooks/productSearchProvider.md index e3ddacb4cc..3a56e86acb 100644 --- a/modules/concepts/hooks/list-of-hooks/productSearchProvider.md +++ b/modules/concepts/hooks/list-of-hooks/productSearchProvider.md @@ -1,5 +1,4 @@ --- -menuTitle: productSearchProvider Title: productSearchProvider hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md b/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md index f418b631be..9816d135b1 100644 --- a/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md +++ b/modules/concepts/hooks/list-of-hooks/sendMailAlterTemplateVars.md @@ -1,5 +1,4 @@ --- -menuTitle: sendMailAlterTemplateVars Title: sendMailAlterTemplateVars hidden: true hookTitle: 'Alter template vars on the fly' diff --git a/modules/concepts/hooks/list-of-hooks/termsAndConditions.md b/modules/concepts/hooks/list-of-hooks/termsAndConditions.md index 57d3dda912..c4c95829e5 100644 --- a/modules/concepts/hooks/list-of-hooks/termsAndConditions.md +++ b/modules/concepts/hooks/list-of-hooks/termsAndConditions.md @@ -1,5 +1,4 @@ --- -menuTitle: termsAndConditions Title: termsAndConditions hidden: true hookTitle: diff --git a/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md b/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md index 5e22faddbe..abf5091338 100644 --- a/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md +++ b/modules/concepts/hooks/list-of-hooks/validateCustomerFormFields.md @@ -1,5 +1,4 @@ --- -menuTitle: validateCustomerFormFields Title: validateCustomerFormFields hidden: true hookTitle: 'Customer registration form validation' From 2867e90053f328342ff1bc3ca11846ad97584754 Mon Sep 17 00:00:00 2001 From: Thomas Nares Date: Tue, 10 Oct 2023 14:25:45 +0200 Subject: [PATCH 18/23] Remove menuTitle, add information on how to maintain hook list --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 21ceed8c5e..f9fb7808bf 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,6 @@ In the documentation, a hook is described with in yaml format, with this format: ```yaml --- -menuTitle: string #name of the hook Title: string #name of the hook hidden: boolean[true] #must be true hookTitle: string #title for the description From d807854eb2dbf5bd1e2987099ed4117fb73d5858 Mon Sep 17 00:00:00 2001 From: Marco Ingraiti Date: Wed, 11 Oct 2023 12:09:34 +0200 Subject: [PATCH 19/23] docs: wront table name --- development/internationalization/translation/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development/internationalization/translation/introduction.md b/development/internationalization/translation/introduction.md index 71f2a08bea..c65f7b0181 100644 --- a/development/internationalization/translation/introduction.md +++ b/development/internationalization/translation/introduction.md @@ -42,7 +42,7 @@ PrestaShop uses Symfony's [Translator Component](https://symfony.com/doc/4.4/tra This component is initialized for the configured language by loading five Catalogue Resources: -* **Customized translations database** - Located in the `ps_translations` table. +* **Customized translations database** - Located in the `ps_translation` table. * **Active theme** – XLF files in `./themes//translations`. * **Core** – XLF files in `./translations`. * **Active modules** – XLF files in `./modules//translations`. From e7ecf9343b63e2e45b4fce6547d0c5e9af8222d1 Mon Sep 17 00:00:00 2001 From: Thomas NARES Date: Tue, 17 Oct 2023 11:03:57 +0200 Subject: [PATCH 20/23] Apply suggestions from code review Co-authored-by: Krystian Podemski --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f9fb7808bf..2c119d5577 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,11 @@ A complete referential of hook and informations on each hook is located in `modu This referential can be generated with a script, crawling all: -- Prestashop (core) codebase +- PrestaShop (core) codebase - all native modules - all native themes -In the documentation, a hook is described with in yaml format, with this format: +In the documentation, a hook is described in yaml format: ```yaml --- @@ -60,7 +60,7 @@ chain: boolean #true or false if the hook has a `$chain` parameter set to `true` --- ``` -This `yaml` structure allows the shortcode `hookDescriptor` to render a digest html page for the documentation, and allows the search script to search in this metadata. +This YAML structure enables the shortcode `hookDescriptor` to generate an HTML page with condensed information for documentation, and allows the search script to search within this metadata. Next, add the shortcode in the page's content: @@ -68,7 +68,7 @@ Next, add the shortcode in the page's content: {{% hookDescriptor %}} ``` -Finally, if available, add a section with a code example, and parameters details: +Finally, if available, add a section with a code example and parameters details: ``` ## Parameters details From 4a8f9a48e6e1bcf4166351dfee00c64748f45391 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 19 Oct 2023 16:18:43 +0200 Subject: [PATCH 21/23] Update db.md --- development/components/database/db.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/development/components/database/db.md b/development/components/database/db.md index a98913564c..7093cdccbd 100644 --- a/development/components/database/db.md +++ b/development/components/database/db.md @@ -18,7 +18,7 @@ The first call to this method initializes the link to the database, and return t In some cases, you might encounter this alternative: ```php -$db = Db::getInstance(_PS_USE_SQL_SLAVE_); +$db = \Db::getInstance(_PS_USE_SQL_SLAVE_); ``` If PrestaShop's database user allows the use of MySQL slave servers in its architecture, then this last instance's connection can be done on the slave servers. @@ -56,7 +56,7 @@ It should only be used for read only queries: SELECT, SHOW, etc. Using getRow() method will retrieve the first row of your query: ```php -$request = "SELECT `id_table` FROM `' . _DB_PREFIX_ . 'some_table` ..."; +$request = 'SELECT `id_table` FROM `' . _DB_PREFIX_ . 'some_table` ...'; /** @var array $result */ $result = $db->getRow($request); @@ -70,7 +70,7 @@ This function automatically adds "LIMIT 1" to the query. #### Retrieving only a single value ```php -$request = "SELECT `count('sales')` FROM `' . _DB_PREFIX_ . 'some_table` ..."; +$request = 'SELECT `count('sales')` FROM `' . _DB_PREFIX_ . 'some_table` ...'; /** @var string|false $salesCount */ $salesCount = $db->getValue($request); @@ -103,7 +103,7 @@ Returns the number of rows impacted by the latest `INSERT`, `UPDATE`, `REPLACE` ### Execute a raw SQL request (UPDATE, INSERT...) ```php -$request = "INSERT INTO `' . _DB_PREFIX_ . 'some_table` (`id_table`) VALUES (10)"; +$request = 'INSERT INTO `' . _DB_PREFIX_ . 'some_table` (`id_table`) VALUES (10)'; /** @var bool $result */ $result = $db->execute($request); From ed09777cea9135ccf678c91aaac8e89991ef4a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= <16720275+jf-viguier@users.noreply.github.com> Date: Fri, 20 Oct 2023 16:02:16 +0200 Subject: [PATCH 22/23] Add actionTaxManager hook --- .../hooks/list-of-hooks/actionTaxManager.md | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 modules/concepts/hooks/list-of-hooks/actionTaxManager.md diff --git a/modules/concepts/hooks/list-of-hooks/actionTaxManager.md b/modules/concepts/hooks/list-of-hooks/actionTaxManager.md new file mode 100644 index 0000000000..a743e061de --- /dev/null +++ b/modules/concepts/hooks/list-of-hooks/actionTaxManager.md @@ -0,0 +1,30 @@ +--- +Title: actionTaxManager +hidden: true +hookTitle: 'Tax Manager Factory' +files: + - + url: 'https://github.com/PrestaShop/PrestaShop/blob/8.0.x/classes/tax/TaxManagerFactory.php' + file: classes/tax/TaxManagerFactory.php +locations: + - 'front office' +type: action +hookAliases: taxManager +array_return: false +check_exceptions: false +chain: false +origin: core +description: 'This hook is launched by the Tax Manager Factory' + +--- + +{{% hookDescriptor %}} + +## Call of the Hook in the origin file + +```php +$tax_manager = $module_instance->hookTaxManager([ + 'address' => $address, + 'params' => $type, +]); +``` From dc9c50aaeae9b97908f452ee3078696137475854 Mon Sep 17 00:00:00 2001 From: Antoine Descamps Date: Thu, 26 Oct 2023 09:49:48 +0200 Subject: [PATCH 23/23] Added more context for service's named arguments --- development/naming-conventions/_index.md | 9 ++++++--- modules/concepts/services/_index.md | 6 ++++++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/development/naming-conventions/_index.md b/development/naming-conventions/_index.md index f52abac55f..877c00ab08 100644 --- a/development/naming-conventions/_index.md +++ b/development/naming-conventions/_index.md @@ -192,8 +192,7 @@ services: ### Named arguments -**Do NOT** use "named argument" syntax in service declaration: - +**Do NOT** use "named argument" syntax in your front services declaration: ```yaml services: @@ -206,9 +205,13 @@ services: wrong_foo_bar: class: 'Foo\Bar' arguments: - - $baz: 'baz' + $baz: 'baz' ``` +If you do try to use named arguments in your front services definition you will end up with the following error: + +> Fatal error: Uncaught Symfony\Component\DependencyInjection\Exception\RuntimeException: Invalid service "wrong_foo_bar": class "Foo\Bar" does not exist. + ## Grid PrestaShop comes with a lot of Grids (Products, Customers, Orders & etc) and keeping consistency between them is very important, thats why it follows these naming conventions: diff --git a/modules/concepts/services/_index.md b/modules/concepts/services/_index.md index 3703df0070..e9bfd1372a 100644 --- a/modules/concepts/services/_index.md +++ b/modules/concepts/services/_index.md @@ -396,6 +396,12 @@ files in sub folders: - `config/admin/services.yml` will define the services accessible in the back office (in legacy environment AND Symfony environment) - `config/front/services.yml` will define the services accessible in the front office +{{% notice warning %}} +**Do not use named arguments for front services definition** + +For more information read the dedicated section in [Naming Conventions]({{< ref "8/development/naming-conventions/#named-arguments" >}}). +{{% /notice %}} + ### Accessing your services You can then access your services from any legacy controllers (in which the container is automatically injected):