I'm trying to add a few additional configuration keys to an existing OsCommerce module.
The module is called: Credit Card Via Authorize.net
I have manually added two additional configuration keys to the configuration table. (Also made sure that I followed the pattern that the module is using such as same configuration_group_id, ...)
Also in the actual module file (admin/includes/modules/payment/authorizenet.php), there is a function called keys() that just returns an hardcoded array of configurations keys. I added mine to this function as well.
While I am able to use these additional keys as constants in my project, they do not appear under the administration section where an admin can edit the values of different config keys without actually having to go to the database.
Anyone know what the proper way is to add these additional config variables to an OsCommerce module?