Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.
You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page
Hooks are a way to associate your code to some specific PrestaShop events.
Most of the time, they are used to insert content in a page. The place it will be added (header, footer, left or right column …) will depend on the hook you choose.
Hooks can also be used to perform specific actions under certain circumstances (i.e. sending an e-mail to the client on an order creation).
Hook names are prefixed with “action” or “display”. This prefix indicates if a hook is triggered by an event or if it’s used to display content:
Every hook you want to use must be registered first. This is usually done during the installation of your module, by calling the method Module::registerHook($hookName)
.
public function install()
{
// [...]
$this->registerHook('displayHeader');
$this->registerHook('displayFooter');
// [...]
}
If you do not know where you can register, a list of available hooks is available.
For each registered hook, you must create a non-static public method, starting with the “hook” keyword followed by the name of the hook you want to use (starting with either “display” or “action”).
This method receives one (and only one) argument: an array of the contextual information sent to the hook.
public function hookDisplayHeader(array $params)
{
// Your code.
}
public function hookDisplayFooter(array $params)
{
// Your code.
}
public function hookActionOtherHook(array $params)
{
// Your code.
}
Remember, in order for a module to respond to a hook call, it must be registered within PrestaShop.
It is easy to call a hook from within a controller: you simply have to use its name with the Hook::exec($hook_name, $hook_args = array())
method. Some parameters can be sent as well.
For instance:
$this->context->smarty->assign(
'HOOK_LEFT_COLUMN',
Hook::exec('displayLeftColumn')
);
In a Symfony controller, please use the dispatchHook method of the inherited FrameworkBundleAdminController
class:
protected function dispatchHook($hookName, array $parameters);
It is easy to call a hook from within a template file (.tpl
): you simply have to use its name with the hook function. You can add the name of a module that you want the hook execute.
Basic call of a hook:
{hook h='hookName'}
Call of a hook for a specific module:
{hook h='hookName' mod='modulename'}
It is easy to call a hook from within a twig template file (.html.twig
): you simply have to use its name with the renderHook twig function. You can add params as a second argument.
Basic call of a hook:
{{ renderHook('hookName', { params }) }}
You can create new PrestaShop hooks by adding a new record in the Hook table. This can be done with the Hook class, which inherit ObjectModel features:
$hook = new Hook();
$hook->name = 'displayAtSpecificPlace';
$hook->title = 'The name of your hook';
$hook->description = 'This is a custom hook!';
$hook->position = 1;
$hook->add(); // return true on success
You can check if hook exists before this with Hook::getIdByName('hook_name')
… but PrestaShop enables you to do it the easy way:
$this->registerHook('displayAtSpecificPlace');
If the hook “displayAtSpecificPlace” doesn’t exist, PrestaShop will create it for you but be careful: this will also plug the current module to the hook.