0
我想創建一個自定義的Magento管理頁面,但我似乎無法讓我的佈局或模板出現在頁面中。該頁面在菜單中顯示正常,但是當您單擊它時,您只會看到空白的管理頁面。我遵循了幾個不同的教程,並至少經歷了整個過程兩次,但無法弄清楚爲什麼我的模板沒有出現。 You can download all the source here.創建自定義Magento管理頁面佈局
我想創建一個自定義的Magento管理頁面,但我似乎無法讓我的佈局或模板出現在頁面中。該頁面在菜單中顯示正常,但是當您單擊它時,您只會看到空白的管理頁面。我遵循了幾個不同的教程,並至少經歷了整個過程兩次,但無法弄清楚爲什麼我的模板沒有出現。 You can download all the source here.創建自定義Magento管理頁面佈局
在Saxx_Forzani_Block_Adminhtml_Forzani你可以做
public function __construct()
{
parent::__construct();
$this->setTemplate('forzani/admincontent.phtml');
}
在控制器那麼你可以做
public function indexAction()
{
$this->_initAction()
->_addContent($this->getLayout()->createBlock('saxx_forzani/adminhtml_forzani'))
->renderLayout();
}
作爲Saxx_Forzani_Block_Adminhtml_Forzani延伸Mage_Core_Block_Template這應該只要工作 – simonthesorcerer