5

我希望在后端(在“design/adminhtml”下)重用某个前端 UI 元素。这主要包括重用模板(phtml)。但是,从后端引用前端布局句柄似乎更好。magento 是否为共享的 UI 组件提供了一个位置,一种将它们声明为共享的方式,或者一种在 frontend/adminhtml 之间引用它们的机制?谢谢

4

1 回答 1

9

@coriscus 是的,这是可能的。我从管理员那里找到了使用前端模板的技巧。

public function __construct()
{
    parent::__construct();
    $this->setData('area','frontend');
    $this->setTemplate('customer/online.phtml');
}

只需在块构造函数中设置所需区域。

于 2012-03-18T09:27:56.773 回答