Prestashop 1.7 получить переменную ajaxProcess в файле TPL - PullRequest
0 голосов
/ 14 ноября 2018

Я использую функцию ajax ниже при отправке кнопки, переменная $ list_ref содержит правильный результат, как назначить эту переменную, чтобы использовать ее в tpl? Любое предложение, пожалуйста

public function ajaxProcessSaveData(){


    if(isset(Tools::getValue("ref_product"))){


        $product_reference = Tools::getValue("ref_product");
        $id_product =  Tools::getValue('id_product');
        $product_name=  Tools::getValue('product_name');
        $img_product =  Tools::getValue('img_product');

       $list_ref = array($id_product, $product_name, $img_product);

       //var_dump( $list_ref);
      $this->context->smarty->assign(array(
             'list_refs' =>  $list_ref, 
      ));

      $this->context->smarty->assign('list_refs',  $list_ref);
        }
    }

1 Ответ

0 голосов
/ 28 ноября 2018

die($this->context->smarty->fetch(_PS_MODULE_DIR_.'modulename/views/templates/hook/abc.tpl'));

...