Matteo ulivi Posted July 19, 2012 Share Posted July 19, 2012 Salve, avrei bisogno di inserire una mia funzione ogni volta che viene creato un nuovo ordine su prestashop. Qualche aiuto? Non saprei da dove partire.... Utilizzo spesso wordpress quindi conosco bene la logica del file function.php c'è qualcosa di simile in prestashop? Link to comment Share on other sites More sharing options...
virofla Posted July 19, 2012 Share Posted July 19, 2012 Guarda questa pagina: http://doc.prestashop.com/display/PS14/Creating+a+PrestaShop+module Devi utilizzare l'hook " newOrder". 1 Link to comment Share on other sites More sharing options...
Matteo ulivi Posted November 20, 2012 Author Share Posted November 20, 2012 (edited) Ho creato il modulo, come faccio a fare un var_dump di $params? Dove lo visualizzo? C'è una documentazione per sapere come è strutturata la variabile $params? <?php class ImportOrdini extends Module {function __construct() { $this->name = 'importordini'; $this->tab = 'Import Ordini'; $this->version = 0.1; $this->author = 'Matteo Ulivi'; $this->need_instance = 0; parent::__construct(); $this->displayName = $this->l('Import Ordini'); $this->description = $this->l('Importa gli ordini sul gestionale'); parent::__construct(); } function install() { if ( parent::install() == false OR !$this->registerHook( 'newOrder' ) ) return false; return true; } public function uninstall() { if (!parent::uninstall()) return false; } /* Test newOrder hook*/ function hookNewOrder($params) { QUI TUO SCRIPT PER IMPORTARE ORDINE; } ?> Edited November 20, 2012 by Matteo ulivi (see edit history) 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