2017-07-07 46 views

回答

2

在安装过程中,你的模块,与install方法你应该增加这个片断:

$this->registerHook('displayBeforeHome'); 

例如:

public function install() 
{ 
    return parent::install() and $this->registerHook('displayBeforeHome'); 
} 

然后,你必须创建在hookDisplayBeforeHome方法你模块:

public function hookDisplayBeforeHome($params) 
{ 
    // do your stuff 
    return 'IT WORKS!'; 
} 

然后在模板添加Smarty的片段叫钩:

{hook h='displayBeforeHome'} 

这一切;)

+0

谢谢哥们其工作:) – Bhu

+0

@Bhu显然XD – sarcom