拡張機能で Mage_Adminhtml_Block_Widget_Form を上書きしようとしていますが、うまく動作しないようです。
私の設定は次のようになります
<global>
<blocks>
<adminhtml>
<rewrite>
<widget_form>Baldwin_TestModule_Block_Adminhtml_Widget_Form</widget_form>
</rewrite>
</adminhtml>
</blocks>
</global>
そして、私の上書きクラス (ディレクトリ内: Baldwin/TestModule/Block/Adminhtml/Widget/Form.php) は次のようになります
class Baldwin_TestModule_Block_Adminhtml_Widget_Form
extends Mage_Adminhtml_Block_Widget_Form
{
/**
* Set Fieldset to Form
*
* @param array $attributes attributes that are to be added
* @param Varien_Data_Form_Element_Fieldset $fieldset
* @param array $exclude attributes that should be skipped
*/
protected function _setFieldset($attributes, $fieldset, $exclude=array())
{
die("test");
}
}
誰かが私が間違っていることを知っていますか?