//Use protected instead of private function

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8863 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2011-09-29 07:07:06 +00:00
parent 94e015fb29
commit 6a96dd1371
4 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -211,7 +211,7 @@ class ProductControllerCore extends FrontController
/**
* Assign price and tax to the template
*/
private function assignPriceAndTax()
protected function assignPriceAndTax()
{
$id_customer = (isset($this->context->customer) ? (int)($this->context->customer->id) : 0);
$group_reduction = (100 - Group::getReduction($id_customer)) / 100;
@@ -252,7 +252,7 @@ class ProductControllerCore extends FrontController
/**
* Assign template vars related to images
*/
private function assignImages()
protected function assignImages()
{
$images = $this->product->getImages((int)$this->context->cookie->id_lang);
$productImages = array();
@@ -285,7 +285,7 @@ class ProductControllerCore extends FrontController
/**
* Assign template vars related to attribute groups and colors
*/
private function assignAttributesGroups()
protected function assignAttributesGroups()
{
$colors = array();
$attributesGroups = $this->product->getAttributesGroups($this->context->language->id); // @todo (RM) should only get groups and not all declination ?
@@ -447,7 +447,7 @@ class ProductControllerCore extends FrontController
/**
* Assign template vars related to category
*/
private function assignCategory()
protected function assignCategory()
{
$category = false;
if (isset($_SERVER['HTTP_REFERER'])