PDA

View Full Version : Admin Feature Insertion


Rich
01-08-2012, 12:25 AM
I am not sure what I have been doing wrong so I am posting here.

I want to add a yes/no field to a modification I am using. What do I need to add to the admin file so that the field works and is stored? I can get the field to show with this:


print_yes_no_row($vbphrase['shoppingcart_paymentplan'], 'paymentplan', $product['paymentplan']);


I have the phrase set obviously. The field displays as it should, where it should.

The field "paymentplan" has been added to the "products" table which is what this affects. When I click "save" after setting the value for the yes/no it doesn't save. I am guessing I am missing something completely but can't figure it out.

kh99
01-08-2012, 12:47 AM
What script gets called when you press submit? In that script you need to do something like:

$vbulletin->input->clean_gpc('r', 'paymentplan', TYPE_STR);


then the value will be in $vbulletin->GPC['paymentplan']. You then want to check that value and decide if it's yes or no, then write it to the appropriate database column.