Barama Posted November 18, 2014 Share Posted November 18, 2014 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 More sharing options...
Luca01 Posted November 18, 2014 Share Posted November 18, 2014 (edited) Hallo, für welche Version schreibst Du denn? Viele Grüße ps: Ach, ich sehe gerade. Schau Dir doch die function __construct aus dem bankwire-Modul an. Edited November 18, 2014 by Luca01 (see edit history) Link to comment Share on other sites More sharing options...
Barama Posted November 18, 2014 Author Share Posted November 18, 2014 Ich schreibe für die Version 1.6 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now