Я использую функцию 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);
}
}