Null Parameter |
09-16-2008 03:21 AM |
I figured I would post this because I didn't see it anywhere else in a quick search through here.
If you want to have a separate activity on the online page, then there is a simple addition to the product to allow this. For example, if you have a form to submit a PM to the admins, then when a user is using that form, you could have their location/activity be "Contacting the Admins". That is just an example, it is open to whatever you want.
Here is the code you must add to the product xml to get this easy addition:
Code:
<plugin active="1" executionorder="5">
<title>Form Name - Online Location Complete</title>
<hookname>online_bit_complete</hookname>
<phpcode><![CDATA[
if($userinfo['activity'] == 'newthread' && $userinfo['values']['do'] == 'your_form_name')
{
$userinfo['action'] = "???";
}
]]>
</phpcode>
</plugin>
Just replace 'your_form_name' with the name of your form and put whatever text you want in the action field.
This works on my vBulletin v3.7.3, haven't tested older versions.
Oh yeah, I think that this should be added into the base product. ;)
|