JulienPct Posted February 24, 2022 Share Posted February 24, 2022 (edited) Bonjour, PS 1.7.8.3 / Thème : Alysum J'ai créé un module permettant à l'utilisateur d'entrer une liste d'ID de produit dans le BO afin de les afficher dans un carrousel slick en front. Je récupère bien toutes mes données dans un tableau "$productToAssign" dans la fonction "getWidgetVariables" : public function getWidgetVariables($hookName = null, array $configuration = []) { $blocks = json_decode(Configuration::get('AK_BESTSELLER'), true); $productsList = []; $products = []; $productToAssign = []; foreach ($blocks as $block){ $productsList[] = explode(",", $block['productList']); } foreach ($productsList as $productList){ foreach ($productList as $item){ $products[$item] = new Product($item); } } foreach ($products as $key=>$product){ $brandName = $product->manufacturer_name; $price = Product::getPriceStatic($key); $image = Image::getCover($key); $imageLink = new Link(); $imagePath = $imageLink->getImageLink($product->link_rewrite[Context::getContext()->language->id], $image['id_image'], 'home_default'); // GET URLs $url = $imageLink->getProductLink($product); $productToAssign[$key] = [ 'id_product' => $key, 'name' => $product->name[1], 'image' => $imagePath, 'price' => number_format((float)$price, 2, '.', ''), 'brand' => $brandName, 'link' => $url ]; } return [ 'blocks' => json_decode( Configuration::get('AK_BESTSELLER'), true ), 'products' => $productToAssign, ]; } Puis je l'appelle dans mon "renderWidget" : public function renderWidget($hookName = null, array $configuration = []) { /** * Inclusion du CSS */ // $this->context->controller->addCSS('modules/'.$this->name.'/views/css/front.css', 'all'); /** * Fichier template */ $templateFile = 'module:'.$this->name.'/views/templates/front/widget.tpl'; if (!$this->isCached($templateFile, $this->getCacheId())) { $this->smarty->assign($this->getWidgetVariables($hookName, $configuration)); } return $this->fetch($templateFile, $this->getCacheId()); } Si j'enlève l'assign du produit, mon TPL fonctionne, cependant quand j'ajoute ce dernier, mon TPL ne s'affiche pas du tout. J'ai bien vérifié mes traitements et toutes mes valeurs sont remplies comme je le souhaite : Quelqu'un aurait une idée ? Edited February 24, 2022 by JulienPct (see edit history) Link to comment Share on other sites More sharing options...
JulienPct Posted February 24, 2022 Author Share Posted February 24, 2022 Petite MAJ : J'ai vu que c'était l'import du TPL du panier qui me cassait tout cas il lui manquait des variables. J'ai donc décidé d'assigner tout l'objet produit directement afin que j'ai obligatoirement toutes les données. Le problème que j'ai maintenant est avec le multilingue. Afin d'assigner un tableau et non un objet à mon TPL, je transforme mes objet en tableaux : foreach ($products as &$product){ $product = get_object_vars($product); } Le truc c'est qu'avec le multilingue, TOUTES mes valeurs contiennent un array et ça me casse tout mes appels de mon TPL Le tableau est pas très beau mais c'est compréhensible. Je prend tous les conseils possibles 😅 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