Я успешно добавил хук для отображения поля в форме создания клиента в prestashop 1.7.Но я не могу найти, какой хук следует использовать для обработки отправки формы для проверки и обработки формы.
class MyModule extends Module {
...
public function install()
{
return parent::install()
&& $this->registerHook('displayCustomerAccountForm')
}
public function hookDisplayCustomerAccountForm($params) {
return $this->display(__FILE__, 'hookDisplayCustomerAccountForm.tpl');
}
...
}