I want the ability to add an additional column into the products viewed report, In the controller file, I imagined this would be enough to the reference the manufacturer in the view TPL.
Code: Select all
$this->data['products'][] = array(
'name' => $result['name'],
'model' => $result['model'],
'manufacturer' => $result['manufacturer],
'viewed' => $result['viewed'],
'percent' => $percent . '%'
);
}