0

我正在尝试使用addHandle(),但使用以下会产生错误:

public function HandleMe($observer)

  $update = $observer->getEvent()->getLayout()->getUpdate();

  $update->addHandle('handlename');

引发“致命错误:调用成员函数getUpdate()

4

2 回答 2

1

您必须在更新布局之前加载核心/布局,因此请尝试遵循以下代码,

 public function addCustomHandles($observer) {
       $update = Mage::getSingleton('core/layout')->getUpdate();
        //Your code here..
        }

或参考以下链接,

链接 1

链接 2

于 2013-10-24T11:14:28.780 回答
0

尝试使用以下方法:

首先将其添加到您的自定义模块中的 config.xml 中:

<config>
<frontend>
        <events>
            <controller_action_layout_load_before>
                <observers>
                    <yourcustomtheme_observer>
                        <class>yourcustomtheme/observer</class>
                        <method>addHandles</method>
                    </yourcustomtheme_observer>
                </observers>
            </controller_action_layout_load_before>
        </events>
</frontend>
</config>

然后将以下方法添加到您的观察者

class YourPackage_YourCustomTheme_Model_Observer extends CLS_Core_Model_Abstract
{
    public function addHandles($observer) {
        $category = Mage::registry('current_category');
        if ($category instanceof Mage_Catalog_Model_Category) {
            $update = Mage::getSingleton('core/layout')->getUpdate();
            $fertilility = (count($category->getChildrenCategories()->getData())) ? 'parent' : 'nochildren';
            $update->addHandle('catalog_category_' . $fertilility);
        }
        return $this;
    }
}

PS:这仅供参考,以便您检查您是否正确使用了观察者和句柄。

于 2013-10-24T12:22:39.223 回答