我刚刚在magento / sales / orders中创建了一个名为“sync”的新按钮。我想要的是当你点击按钮它打开sync.php。解决这个问题的最佳方法是什么?
class Module_Parcel_Block_Adminhtml_Sales_Order extends Mage_Adminhtml_Block_Sales_Order
{
public function __construct() {
$this->_addButton('testbutton', array(
'label' => Mage::helper('Sales')->__('Parcel Sync'),
'onclick' => 'setLocation(\'http://google.nl\')',
'class' => 'go'
), 0, 100, 'header', 'header');
parent::__construct();
}
}
编辑:我现在尝试的是搜索我如何将事件附加到按钮,这样我就可以使用观察者触发sync.php,到目前为止没有成功。