| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Catalog/Block/Product/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Catalog
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Catalog Product Abstract Block
*
* @category Mage
* @package Mage_Catalog
* @author Magento Core Team <core@magentocommerce.com>
*/
abstract class Mage_Catalog_Block_Product_Abstract extends Mage_Core_Block_Template
{
protected $_priceBlock = array();
protected $_priceBlockDefaultTemplate = 'catalog/product/price.phtml';
protected $_tierPriceDefaultTemplate = 'catalog/product/view/tierprices.phtml';
protected $_priceBlockTypes = array();
/**
* Flag which allow/disallow to use link for as low as price
*
* @var bool
*/
protected $_useLinkForAsLowAs = true;
protected $_reviewsHelperBlock;
/**
* Default product amount per row
*
* @var int
*/
protected $_defaultColumnCount = 3;
/**
* Product amount per row depending on custom page layout of category
*
* @var array
*/
protected $_columnCountLayoutDepend = array();
/**
* Retrieve url for add product to cart
* Will return product view page URL if product has required options
*
* @param Mage_Catalog_Model_Product $product
* @param array $additional
* @return string
*/
public function getAddToCartUrl($product, $additional = array())
{
if ($product->getTypeInstance(true)->hasRequiredOptions($product)) {
if (!isset($additional['_escape'])) {
$additional['_escape'] = true;
}
if (!isset($additional['_query'])) {
$additional['_query'] = array();
}
$additional['_query']['options'] = 'cart';
return $this->getProductUrl($product, $additional);
}
return $this->helper('checkout/cart')->getAddUrl($product, $additional);
}
/**
* Enter description here...
*
* @param Mage_Catalog_Model_Product $product
* @return string
*/
public function getAddToWishlistUrl($product)
{
return $this->helper('wishlist')->getAddUrl($product);
}
/**
* Retrieve Add Product to Compare Products List URL
*
* @param Mage_Catalog_Model_Product $product
* @return string
*/
public function getAddToCompareUrl($product)
{
return $this->helper('catalog/product_compare')->getAddUrl($product);
}
public function getMinimalQty($product)
{
if ($stockItem = $product->getStockItem()) {
return ($stockItem->getMinSaleQty() && $stockItem->getMinSaleQty() > 0 ? $stockItem->getMinSaleQty() * 1 : null);
}
return null;
}
protected function _getPriceBlock($productTypeId)
{
if (!isset($this->_priceBlock[$productTypeId])) {
$block = 'catalog/product_price';
if (isset($this->_priceBlockTypes[$productTypeId])) {
if ($this->_priceBlockTypes[$productTypeId]['block'] != '') {
$block = $this->_priceBlockTypes[$productTypeId]['block'];
}
}
$this->_priceBlock[$productTypeId] = $this->getLayout()->createBlock($block);
}
return $this->_priceBlock[$productTypeId];
}
protected function _getPriceBlockTemplate($productTypeId)
{
if (isset($this->_priceBlockTypes[$productTypeId])) {
if ($this->_priceBlockTypes[$productTypeId]['template'] != '') {
return $this->_priceBlockTypes[$productTypeId]['template'];
}
}
return $this->_priceBlockDefaultTemplate;
}
/**
* Returns product price block html
*
* @param Mage_Catalog_Model_Product $product
* @param boolean $displayMinimalPrice
*/
public function getPriceHtml($product, $displayMinimalPrice = false, $idSuffix='')
{
return $this->_getPriceBlock($product->getTypeId())
->setTemplate($this->_getPriceBlockTemplate($product->getTypeId()))
->setProduct($product)
->setDisplayMinimalPrice($displayMinimalPrice)
->setIdSuffix($idSuffix)
->setUseLinkForAsLowAs($this->_useLinkForAsLowAs)
->toHtml();
}
/**
* Adding customized price template for product type
*
* @param string $type
* @param string $block
* @param string $template
*/
public function addPriceBlockType($type, $block = '', $template = '')
{
if ($type) {
$this->_priceBlockTypes[$type] = array(
'block' => $block,
'template' => $template
);
}
}
/**
* Get product reviews summary
*
* @param Mage_Catalog_Model_Product $product
* @param bool $templateType
* @param bool $displayIfNoReviews
* @return string
*/
public function getReviewsSummaryHtml(Mage_Catalog_Model_Product $product, $templateType = false, $displayIfNoReviews = false)
{
$this->_initReviewsHelperBlock();
return $this->_reviewsHelperBlock->getSummaryHtml($product, $templateType, $displayIfNoReviews);
}
/**
* Add/replace reviews summary template by type
*
* @param string $type
* @param string $template
*/
public function addReviewSummaryTemplate($type, $template)
{
$this->_initReviewsHelperBlock();
$this->_reviewsHelperBlock->addTemplate($type, $template);
}
/**
* Create reviews summary helper block once
*
*/
protected function _initReviewsHelperBlock()
{
if (!$this->_reviewsHelperBlock) {
$this->_reviewsHelperBlock = $this->getLayout()->createBlock('review/helper');
}
}
/**
* Retrieve currently viewed product object
*
* @return Mage_Catalog_Model_Product
*/
public function getProduct()
{
if (!$this->hasData('product')) {
$this->setData('product', Mage::registry('product'));
}
return $this->getData('product');
}
public function getTierPriceTemplate()
{
if (!$this->hasData('tier_price_template')) {
return $this->_tierPriceDefaultTemplate;
}
return $this->getData('tier_price_template');
}
/**
* Returns product tierprice block html
*
* @param Mage_Catalog_Model_Product $product
*/
public function getTierPriceHtml($product = null)
{
if (is_null($product)) {
$product = $this->getProduct();
}
return $this->_getPriceBlock($product->getTypeId())
->setTemplate($this->getTierPriceTemplate())
->setProduct($product)
->setInGrouped($this->getProduct()->isGrouped())
->toHtml();
}
/**
* Get tier prices (formatted)
*
* @param Mage_Catalog_Model_Product $product
* @return array
*/
public function getTierPrices($product = null)
{
if (is_null($product)) {
$product = $this->getProduct();
}
$prices = $product->getFormatedTierPrice();
$res = array();
if (is_array($prices)) {
foreach ($prices as $price) {
$price['price_qty'] = $price['price_qty']*1;
if ($product->getPrice() != $product->getFinalPrice()) {
if ($price['price']<$product->getFinalPrice()) {
$price['savePercent'] = ceil(100 - (( 100/$product->getFinalPrice() ) * $price['price'] ));
$price['formated_price'] = Mage::app()->getStore()->formatPrice(Mage::app()->getStore()->convertPrice(Mage::helper('tax')->getPrice($product, $price['website_price'])));
$price['formated_price_incl_tax'] = Mage::app()->getStore()->formatPrice(Mage::app()->getStore()->convertPrice(Mage::helper('tax')->getPrice($product, $price['website_price'], true)));
$res[] = $price;
}
}
else {
if ($price['price']<$product->getPrice()) {
$price['savePercent'] = ceil(100 - (( 100/$product->getPrice() ) * $price['price'] ));
$price['formated_price'] = Mage::app()->getStore()->formatPrice(Mage::app()->getStore()->convertPrice(Mage::helper('tax')->getPrice($product, $price['website_price'])));
$price['formated_price_incl_tax'] = Mage::app()->getStore()->formatPrice(Mage::app()->getStore()->convertPrice(Mage::helper('tax')->getPrice($product, $price['website_price'], true)));
$res[] = $price;
}
}
}
}
return $res;
}
/**
* Add all attributes and apply pricing logic to products collection
* to get correct values in different products lists.
* E.g. crosssells, upsells, new products, recently viewed
*
* @param Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection $collection
* @return Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection
*/
protected function _addProductAttributesAndPrices(Mage_Catalog_Model_Resource_Eav_Mysql4_Product_Collection $collection)
{
return $collection
->addMinimalPrice()
->addFinalPrice()
->addTaxPercents()
->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes());
}
/**
* Retrieve given media attribute label or product name if no label
*
* @param Mage_Catalog_Model_Product $product
* @param string $mediaAttributeCode
*
* @return string
*/
public function getImageLabel($product=null, $mediaAttributeCode='image')
{
if (is_null($product)) {
$product = $this->getProduct();
}
$label = $product->getData($mediaAttributeCode.'_label');
if (empty($label)) {
$label = $product->getName();
}
return $label;
}
/**
* Retrieve Product URL using UrlDataObject
*
* @param Mage_Catalog_Model_Product $product
* @param array $additional the route params
* @return string
*/
public function getProductUrl($product, $additional = array())
{
if ($this->hasProductUrl($product)) {
if (!isset($additional['_escape'])) {
$additional['_escape'] = true;
}
return $product->getUrlModel()->getUrl($product, $additional);
}
return '#';
}
/**
* Check Product has URL
*
* @param Mage_Catalog_Model_Product $product
* @return bool
*/
public function hasProductUrl($product)
{
if ($product->getVisibleInSiteVisibilities()) {
return true;
}
if ($product->hasUrlDataObject()) {
if (in_array($product->hasUrlDataObject()->getVisibility(), $product->getVisibleInSiteVisibilities())) {
return true;
}
}
return false;
}
/**
* Retrieve product amount per row
*
* @return int
*/
public function getColumnCount()
{
if (!$this->_getData('column_count')) {
$pageLayout = $this->getPageLayout();
if ($pageLayout && $this->getColumnCountLayoutDepend($pageLayout->getCode())) {
$this->setData(
'column_count',
$this->getColumnCountLayoutDepend($pageLayout->getCode())
);
} else {
$this->setData('column_count', $this->_defaultColumnCount);
}
}
return (int) $this->_getData('column_count');
}
/**
* Add row size depends on page layout
*
* @param string $pageLayout
* @param int $rowSize
* @return Mage_Catalog_Block_Product_List
*/
public function addColumnCountLayoutDepend($pageLayout, $columnCount)
{
$this->_columnCountLayoutDepend[$pageLayout] = $columnCount;
return $this;
}
/**
* Remove row size depends on page layout
*
* @param string $pageLayout
* @return Mage_Catalog_Block_Product_List
*/
public function removeColumnCountLayoutDepend($pageLayout)
{
if (isset($this->_columnCountLayoutDepend[$pageLayout])) {
unset($this->_columnCountLayoutDepend[$pageLayout]);
}
return $this;
}
/**
* Retrieve row size depends on page layout
*
* @param string $pageLayout
* @return int|boolean
*/
public function getColumnCountLayoutDepend($pageLayout)
{
if (isset($this->_columnCountLayoutDepend[$pageLayout])) {
return $this->_columnCountLayoutDepend[$pageLayout];
}
return false;
}
/**
* Retrieve current page layout
*
* @return Varien_Object
*/
public function getPageLayout()
{
return $this->helper('page/layout')->getCurrentPageLayout();
}
/**
* If exists price template block, retrieve price blocks from it
*
* @return Mage_Catalog_Block_Product_Abstract
*/
protected function _prepareLayout()
{
parent::_prepareLayout();
/* @var $block Mage_Catalog_Block_Product_Price_Template */
$block = $this->getLayout()->getBlock('catalog_product_price_template');
if ($block) {
foreach ($block->getPriceBlockTypes() as $type => $priceBlock) {
$this->addPriceBlockType($type, $priceBlock['block'], $priceBlock['template']);
}
}
return $this;
}
}