Hi core devs,
I'm found this hook "$this->getHookVar('product_description_array')" in the product.tpl file.
I have tried to add array like this:
$tabs['Test'] = [
'title' => $view->fetch('pages/test/test_tab.tpl'),
'html' => $view->fetch('pages/test/test_content.tpl')
];
$that->view->addHookVar('product_description_array',$tabs);
It's not working.
I tried to debug in the tpl file and found out that the variable is set as a string contains 'array', not a real array.