Jump to content

usare le classi di prestashop in 1 script fuori dalla cartella principale


Recommended Posts

vorrei capire come usare le classi Image , Product in uno script esterno a prestashop

cosi da poter gestire il caricamento dei prodotti come nel seguente pezzo di codice:

---

$product = new Product;

...

$product->name = $productName;

$product->id_category_default = $getCategoryID;

...

 $productID; $product->add();

---

avete 1 esempio di aiuto?

grazie

Link to comment
Share on other sites

  • 2 months later...

Ciao,

per instanziare PS da uno script esterno, posto nella root di PS, ti basta usare:

require_once 'config/config.inc.php';
include(_PS_ROOT_DIR_ . '/init.php');

all'inizio del tuo script.

Attenzione però che uno script esterno può essere vulnerabile, forse lo sviluppo di un modulo per il backoffice sarebbe più indicato.

Buona giornata,
Federica

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