annibale Posted June 26 Share Posted June 26 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 More sharing options...
fedesib Posted September 10 Share Posted September 10 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 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