Jump to content

Multilingue créer un tableau pour tous mes champs produits


JulienPct

Recommended Posts

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

image.thumb.png.08e42b92d711f0dd68e23470736d62e9.png

 

Quelqu'un aurait une idée ?

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

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

image.thumb.png.56e8e77b579f45e0b2a9ea5def778f52.png

 

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

  • JulienPct changed the title to Multilingue créer un tableau pour tous mes champs produits

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