Exemplo n.º 1
0
 public function v($id)
 {
     $this->bestSellerProds();
     $temp = $this->productModel->fetchProductById($id);
     $this->productModel = $temp[0];
     $this->data['prod'] = $this->productModel;
     $ahc = new AttributeHelper();
     $this->data['product_attr'] = $ahc->getAttributesForProduct($temp[0]);
     $reviewModel = new ProductreviewModel();
     $this->data['reviews'] = $reviewModel->fetchReviews($id);
     $this->showTemplate("frontend", 'productdetail.php');
 }