Jump to content

Hook Creazione nuovo ordine


Recommended Posts

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

  • 4 months later...

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 by Matteo ulivi (see edit history)
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...