The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Admin Feature Insertion
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: Code:
print_yes_no_row($vbphrase['shoppingcart_paymentplan'], 'paymentplan', $product['paymentplan']); 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. |
#2
|
|||
|
|||
What script gets called when you press submit? In that script you need to do something like:
Code:
$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. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|