Hi,
I am really newbie to the prestashop modules. In my module I have used this code for install
public function install()
{
if (!parent::install() || !$this->installDB() || !$this->registerHook('leftColumn') || !$this->registerHook('rightColumn'))
return false;
return true;
}
and in...