KonaKart Community Forum

Installation / Configuration => Programming of KonaKart => Topic started by: asimmons on February 27, 2008, 07:00:55 pm

Title: adding configuration parameters for custom payment admin page?
Post by: asimmons on February 27, 2008, 07:00:55 pm
I copied most of my code for my admin side payment module from the authorize.net version in
KonaKart\custom\modules\src\com\konakartadmin\modules\payment\authorizenet\Authorizenet.java

this works fine but I want to alter some of the old ones and add new ones. If I try and comment out any of the configs[i++] then that payment will not come up. What do I change to let me do this?
Title: Re: adding configuration parameters for custom payment admin page?
Post by: heidi on February 27, 2008, 07:06:31 pm
You have to ensure you create the correct sized array at the top of getConfigs()

configs = new KKConfiguration[8];

Have you got 8 variables?

Is this the problem?

You could always add some debug lines to figure it out easily enough.

Heidi
Title: Re: adding configuration parameters for custom payment admin page?
Post by: asimmons on February 27, 2008, 07:11:02 pm
oooohh man ::)

you guys are great thanks.
Title: Re: adding configuration parameters for custom payment admin page?
Post by: heidi on February 27, 2008, 07:17:54 pm
shucks  ::)

Good luck with your project...   please send us a link to your site when it's ready!

Heidi
Title: Re: adding configuration parameters for custom payment admin page?
Post by: asimmons on February 27, 2008, 09:06:13 pm
I will 8)