From 977aa40605e1d2444b4046d754eb6c05166b024a Mon Sep 17 00:00:00 2001 From: ludovic cardinale Date: Wed, 17 Jul 2024 15:41:58 +0200 Subject: [PATCH] Add new Hook after GetHookExecList --- upgrade/sql/9.0.0.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/upgrade/sql/9.0.0.sql b/upgrade/sql/9.0.0.sql index fc3c3301f..04f2c886f 100644 --- a/upgrade/sql/9.0.0.sql +++ b/upgrade/sql/9.0.0.sql @@ -14,7 +14,8 @@ INSERT INTO `PREFIX_hook` (`id_hook`, `name`, `title`, `description`, `position` (NULL, 'actionPresentSupplier', 'Supplier Presenter', 'This hook is called before a supplier is presented', '1'), (NULL, 'actionPresentManufacturer', 'Manufacturer Presenter', 'This hook is called before a manufacturer is presented', '1'), (NULL, 'actionValidateCartRule', 'Alter cart rule validation process', 'Allow modules to implement their own rules to validate a cart rule.', '1'), - (NULL, 'actionCartGetPackageShippingCost', 'After getting package shipping cost value', 'This hook is called in order to allow to modify package shipping cost', '1') + (NULL, 'actionCartGetPackageShippingCost', 'After getting package shipping cost value', 'This hook is called in order to allow to modify package shipping cost', '1'), + (NULL, 'actionGetHookExecListAfter', 'Add action after GetHookExecList', 'This hook is called after getting a list of hook exec', '1') ON DUPLICATE KEY UPDATE `title` = VALUES(`title`), `description` = VALUES(`description`); /* Add feature flag types */