Jump to content

Eigenes Modul als Zahlungsmodul listen


Recommended Posts

Ich habe ein Lastschrift-Modul für Prestashop geschrieben. Es funktioniert auch alles. Aber das Modul wird unter "Module" gelistet. Ich möchte, dass es unter "Module->Zahlung" gelistet wird, damit ich die Länderbeschränkung nutzen kann.

 

Weiß jemand wie das geht?

 

Meine Konstrukturmethode sieht so aus:

function __construct()
    {
        $this->name = 'Lastschrift';
        $this->tab = 'Payment';
        $this->version = 1;

        parent::__construct();

        $this->page = basename(__FILE__, '.php');
        $this->displayName = $this->l('Lastschrift');
        $this->description = $this->l('Ermöglicht die Zahlart Lastschrift');
 
    }

Ich benutze Prestashop 1.6.0.5. Ich dachte, dass durch die Angabe von $this->tab = 'Payment', das Modul unter "Modul->Zahlung" gelistet würde.

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...