Magento - 在非对象上调用成员函数createBlock()

时间:2012-03-19 22:55:47

标签: magento

简单地说,我在添加新的编辑标签后,在Magento的产品管理中收到此错误。

Fatal error: Call to a member function createBlock() on a non-object in
/var/www/app/code/local/RedoxStudios/ErpTab/Block/Adminhtml/Catalog/Product/Tab.php
on line 11

我的代码中有这个:

<?php
class RedoxStudios_ErpTab_Block_Adminhtml_Catalog_Product_Tab
extends Mage_Adminhtml_Block_Template
implements Mage_Adminhtml_Block_Widget_Tab_Interface {

    /*
     * Set the template for the block
     */
    public function __construct() {
        parent::__construct();
        $this->getLayout()->createBlock('Purchase/Product_Widget_StockDetails_Summary');
        $this->setProduct($this->getProduct());
        $this->setTemplate('Purchase/Product/StockDetails/Summary.phtml');
    }

    /**
    * Return current product instance
    *
    * @return Mage_Catalog_Model_Product
    */

    public function getProduct()
    {
        return Mage::registry('product');
    }
}

以前我只能调用createBlock函数。我是否忽略了一些让我无法调用此功能的东西?


Summary.phtml:

<div class="stock-details-summary">

<table border="0">
    <tr>
        <td class="a-right"><?php echo $this->__('Waiting for delivery'); ?> : </td>
        <td class="a-right"><?php echo ($this->getWaitingForDeliveryQty() ? $this->getWaitingForDeliveryQty() : 0); ?></td>
    </tr>
    <tr>
        <td class="a-right">
            <?php echo $this->__('Manual supply need'); ?> : 
            <?php if ($this->getManualSupplyNeedQty() > 0): ?>
                <i><?php echo $this->getProduct()->getmanual_supply_need_comments(); ?></i>
            <?php endif; ?>
        </td>
        <td class="a-right">
            <?php echo $this->getManualSupplyNeedQty(); ?>
        </td>
    </tr>
    <tr>
        <td class="a-right"><?php echo $this->__('Min qty to purchase'); ?> : </td>
        <td class="a-right"><font color="red"><?php echo $this->getTotalNeededQtyForValidOrdersMinusWaitingForDelivery(); ?></font></td>
    </tr>
    <tr>
        <td class="a-right"><?php echo $this->__('Max qty to purchase'); ?> : </td>
        <td class="a-right" width="60"><font color="red"><?php echo $this->getTotalNeededQtyMinusWaitingForDelivery(); ?></font></td>
    </tr>
    <tr>
        <td class="a-right"><?php echo $this->__('Status'); ?> : </td>
        <td class="a-right"><?php echo $this->getGeneralStatus(); ?></td>
    </tr>
</table>

</div>

1 个答案:

答案 0 :(得分:10)

您未正确获取布局对象(Mage_Core_Model_Layout)。在动作控制器和阻止它$this->getLayout()->createBlock(),其他任何地方Mage::app()->getLayout()->createBlock()

编辑:Sergy还指出布局对象没有加载,这让我意识到你使用的是php __construct(),而不是典型的Magento {{1 }}。块实例在它们被_construct()实例化(并且已经调用它们的构造函数)之后才设置布局对象 - 请注意该块方法实例如何通过其{{1}获取布局设置}} 方法。这是块方法Mage_Core_Model_Layout::createBlock()背后的目的 - 它是一个类似构造函数的方法,在创建块实例后触发。

以下代码的更正:

setLayout()