Jump to content
  • 0

Prośba o pomoc z hook'iem


InterLaw

Question

Cześć,

 

Chciałbym umożliwić wyświetlanie modułu w innej pozycji. Pomóżcie proszę z hookiem.

W pliku stcompare.php widzę hooki:

    public function hookDisplayLeftColumnProduct($params)
    {
        return $this->hookProductActions($params);
    }
	
    public function hookDisplayProductSecondaryColumn($params)
    {
        return $this->hookProductActions($params);
    }

Chciałbym dodać hook do pozycji displayCartbox.

Co zrobię to wyświetla się blank page, pomożecie?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

musisz dodać metodę 

public function hookDisplayCartBox($params)
{
	return $this->hookProductActions($params);
}

A następnie zarejestrować tego hooka w module. Np. w metodzie install() lub jednorazowo w __construct() dać $this->registerHook('displayCartBox');

Następnie można sprawdzić czy moduł podczepił się poprawnie w zakładce Moduły > Pozycje.

Jeśli podczepiony jest pod tego hooka ale nie działa to wszystko zależy jeszcze od funkcji hookProductActions w tym module, bo może pobierać id produktu z $_GET, a faktycznie przy wywoływaniu {hook h='displayCartBox'} nie ma id produktu w linku przez to może być problem.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...