Magento - Add Button to Sales Order View Page (Observer/Event)

后端 未结 2 1754
孤城傲影
孤城傲影 2021-01-07 07:00

I\'m trying to add a custom printing button (like print invoice) on the Sales Order View page (Sales > Orders > Order #... view).

I\'ve do

2条回答
  •  庸人自扰
    2021-01-07 07:32

    In Magento, any class function starting with an underscore is defined as private or protected -- it's the naming convention the core team uses -- so you cannot call it from outside the class. This is why $block->_addButton() does not work.

    The good news is you can call $block->addButton() (no underscore). This is the public method that Mage_Adminhtml_Block_Widget_Container provides you.

    Also, you can't call addButton() from $this, because $this is pointing to your observer class, which doesn't have an addButton() method defined (which is what your error is saying).

提交回复
热议问题