We create a module that adds a custom option to each payment method.
We first did this by rewriting Mage_Adminhtml_Block_System_Config_Form::_initObjects and manipulating $this->_configFields. Displaying simple config options works fine, but it turned out, that the necessary information is missing when saving the data, so backend models for this new option are not called.
Our current approach would be to put this logic in Mage_Adminhtml_Model_Config::_initSectionsAndTabs which works fine.
protected function _initSectionsAndTabs()
{
parent::_initSectionsAndTabs();
foreach($this->_sections->payment->groups as $group) {
foreach ($group as $subGroup) {
if (isset($subGroup->fields)) {
$this->_addCustomConfigGroup($subGroup);
}
}
}
}
But is there a way to accomplish this without class-rewriting - only with events?