hook相当于挂载的意思。$this->registerHook(‘displayHome’)。例如如果没有注册registerHook,模块的里function hookdisplayHome()是会报错的。默认模块是不会调用函数displayHome,它需要被调用,调用在模板template或者系统内置的类里面。其他注册的函数也是如此。
prestashop关于hook的用法
最新推荐文章于 2024-06-24 20:09:36 发布

hook相当于挂载的意思。$this->registerHook(‘displayHome’)。例如如果没有注册registerHook,模块的里function hookdisplayHome()是会报错的。默认模块是不会调用函数displayHome,它需要被调用,调用在模板template或者系统内置的类里面。其他注册的函数也是如此。