1: <?php
2: /**
3: * Magento
4: *
5: * NOTICE OF LICENSE
6: *
7: * This source file is subject to the Open Software License (OSL 3.0)
8: * that is bundled with this package in the file LICENSE.txt.
9: * It is also available through the world-wide-web at this URL:
10: * http://opensource.org/licenses/osl-3.0.php
11: * If you did not receive a copy of the license and are unable to
12: * obtain it through the world-wide-web, please send an email
13: * to license@magentocommerce.com so we can send you a copy immediately.
14: *
15: * DISCLAIMER
16: *
17: * Do not edit or add to this file if you wish to upgrade Magento to newer
18: * versions in the future. If you wish to customize Magento for your
19: * needs please refer to http://www.magentocommerce.com for more information.
20: *
21: * @category Mage
22: * @package Mage_XmlConnect
23: * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25: */
26:
27: /**
28: * Customer order view items xml renderer
29: *
30: * @category Mage
31: * @package Mage_XmlConnect
32: * @author Magento Core Team <core@magentocommerce.com>
33: */
34: class Mage_XmlConnect_Block_Customer_Order_Items extends Mage_Sales_Block_Order_Items
35: {
36: /**
37: * Initialize default item renderer
38: */
39: protected function _construct()
40: {
41: parent::_construct();
42: $this->addItemRender('default', 'xmlconnect/customer_order_item_renderer_default', null);
43: }
44:
45: /**
46: * Retrieve item renderer block
47: *
48: * @param string $type
49: * @return Mage_Core_Block_Abstract
50: */
51: public function getItemRenderer($type)
52: {
53: if (empty($type) || !isset($this->_itemRenders[$type])) {
54: $type = 'default';
55: }
56:
57: if (is_null($this->_itemRenders[$type]['renderer'])) {
58: $this->_itemRenders[$type]['renderer'] = $this->getLayout()
59: ->createBlock($this->_itemRenders[$type]['block'])->setRenderedBlock($this);
60: }
61: return $this->_itemRenders[$type]['renderer'];
62: }
63:
64: /**
65: * Render XML for items
66: * (get from template: sales/order/items.phtml)
67: *
68: * @param Mage_XmlConnect_Model_Simplexml_Element $orderXmlObj
69: * @return null
70: */
71: public function addItemsToXmlObject(Mage_XmlConnect_Model_Simplexml_Element $orderXmlObj)
72: {
73: $itemsXml = $orderXmlObj->addChild('ordered_items');
74:
75: foreach ($this->getItems() as $item) {
76: if ($item->getParentItem()) {
77: // if Item is option of grouped product - do not render it
78: continue;
79: }
80: $type = $this->_getItemType($item);
81:
82: // TODO: take out all Enterprise renderers from layout update into array an realize checking of their using
83: // Check if the Enterprise_GiftCard module is available for rendering
84: if ($type == 'giftcard' && !is_object(Mage::getConfig()->getNode('modules/Enterprise_GiftCard'))) {
85: continue;
86: }
87: $renderer = $this->getItemRenderer($type)->setItem($item);
88: if (method_exists($renderer, 'addItemToXmlObject')) {
89: $renderer->addItemToXmlObject($itemsXml);
90: }
91: }
92: }
93: }
94: