Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.