Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Specific User Preferences
vanoob
New
hi, i've tried searching for this and played around with various things myself, i believe that sql may be the key to this problem, however my sql scripting skills are next to nothing, if someone can help me it would be great.
Problem: i need to return the value of a specific preferences of a user (not the person who's browsing) for validation, the UserID of the user in questioned is known.
Problem: i need to return the value of a specific preferences of a user (not the person who's browsing) for validation, the UserID of the user in questioned is known.
0
This discussion has been closed.
Comments
$getme = $Context->ObjectFactory->NewContextObject($Context, 'UserManager'); $who = $getme->GetUserById($userid); $test = $who->Preference('TestPreference');
Obviously you would change 'TestPreference' to the name of the preference you are looking for.