Jump to content

Envoyer des données xml dans un produit Prestashop


agarmur

Recommended Posts

Bonjour, Bonsoir,

J’ai pour habitude de chercher par moi-même mais j’ai du mal à trouver des documentations à ce sujet donc je suis un peu perdu

Voici mon problème, j’ai besoin d’envoyer le nom, prix, description en xml dans un produit, mais le prix est vide, je me demande si j’ai la bonne méthode pour faire cela ?

        $file = file_get_contents('php://input');
        $xml = simplexml_load_file($file);
        $dom = new DOMDocument;
        $product = new Product($xml->id);

        $product->name = $xml->name;
        $product->price = $xml->price;
        $product->description = $xml->description;
        $product->save();

        $id = $dom->createElement('id', "$xml->id");
        $name = $dom->createElement('name', "$xml->name");
        $price = $dom->createElement('price', "$xml->price");
        $description = $dom->createElement('description', "$xml->description");

        $dom->appendChild($id);
        $dom->appendChild($name);
        $dom->appendChild($price);
        $dom->appendChild($description);

        $dom->formatOutput = true;
        $this->output .= $dom->saveXML($file);
        $this->output .= $product->id;

Voici la réponse sur Postman :

2.1.png

 

Merci !

Edited by agarmur (see edit history)
Link to comment
Share on other sites

  • 3 weeks later...

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