Пытаюсь создать кнопку для добавления в список желаемых. Создал хук, зарегестрировал, но не получаеться с ним хоть что либо сделать( Что я делаю не так?
mymodule.php
public function install()
{
Configuration::updateValue('FAVORITES_LIVE_MODE', false);
return parent::install() &&
$this->registerHook('header') &&
$this->registerHook('backOfficeHeader');
$this->registerHook('addToWishlist');
}
public function hookAddToWishlist()
{
return "Hello from ".$this->name;
}
product.tpl
<strong>{hook h='addToWishlist' mod='favorites'}</strong>
модуль установил, не понимаю почему в transplant modules нету моего хука(