| 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/Sales/Block/Items/ |
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_Sales
* @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)
*/
/**
* Abstract block for display sales (quote/order/invoice etc.) items
*
* @category Mage
* @package Mage_Sales
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Sales_Block_Items_Abstract extends Mage_Core_Block_Template
{
/**
* Renderers with render type key
* block => the block name
* template => the template file
* renderer => the block object
*
* @var array
*/
protected $_itemRenders = array();
/**
* Initialize default item renderer
*/
protected function _construct()
{
parent::_construct();
$this->addItemRender('default', 'checkout/cart_item_renderer', 'checkout/cart/item/default.phtml');
}
/**
* Add renderer for item product type
*
* @param string $type
* @param string $block
* @param string $template
* @return Mage_Checkout_Block_Cart_Abstract
*/
public function addItemRender($type, $block, $template)
{
$this->_itemRenders[$type] = array(
'block' => $block,
'template' => $template,
'renderer' => null
);
return $this;
}
/**
* Retrieve item renderer block
*
* @param string $type
* @return Mage_Core_Block_Abstract
*/
public function getItemRenderer($type)
{
if (!isset($this->_itemRenders[$type])) {
$type = 'default';
}
if (is_null($this->_itemRenders[$type]['renderer'])) {
$this->_itemRenders[$type]['renderer'] = $this->getLayout()
->createBlock($this->_itemRenders[$type]['block'])
->setTemplate($this->_itemRenders[$type]['template'])
->setRenderedBlock($this);
}
return $this->_itemRenders[$type]['renderer'];
}
/**
* Prepare item before output
*
* @param Mage_Core_Block_Abstract $renderer
* @return Mage_Sales_Block_Items_Abstract
*/
protected function _prepareItem(Mage_Core_Block_Abstract $renderer)
{
return $this;
}
/**
* Return product type for quote/order item
*
* @param Varien_Object $item
* @return string
*/
protected function _getItemType(Varien_Object $item)
{
if ($item->getOrderItem()) {
$type = $item->getOrderItem()->getProductType();
} elseif ($item instanceof Mage_Sales_Model_Quote_Address_Item) {
$type = $item->getQuoteItem()->getProductType();
} else {
$type = $item->getProductType();
}
return $type;
}
/**
* Get item row html
*
* @param Varien_Object $item
* @return string
*/
public function getItemHtml(Varien_Object $item)
{
$type = $this->_getItemType($item);
$block = $this->getItemRenderer($type)
->setItem($item);
$this->_prepareItem($block);
return $block->toHtml();
}
}