Jump to content

Edit History

JulienPct

JulienPct

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 ?

JulienPct

JulienPct

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 ?

×
×
  • Create New...