I'm not sure exactly what you mean. Perhaps this will help.
For a mod I wrote, I have this line:
PHP Code:
log_moderator_action($threadinfo, 'thread_verified_x_reason_y_hold_z', array($vbulletin->GPC['verify_status'], $vbulletin->GPC['verify_reason'], $vbulletin->GPC['verify_hold']));
The phrase 'thread_verified_x_reason_y_hold_z' is:
Code:
Thread verified. (verified: {1}; reason: {2}; hold: {3})
So from my statement, it actually translates into this in the log:
Code:
Thread verified. (verified: $vbulletin->GPC['verify_status']; reason: $vbulletin->GPC['verify_reason']; hold: $vbulletin->GPC['verify_hold'])
OR (example)
Code:
Thread verified. (verified: 2; reason: 3; hold: 0)
A verifiy status of 2 means it's a questionable thread, the reason being #3 and the thread is not on hold. (It doesn't really matter exactly except that I and the mods understand that line.) I passed it variables which it entered into the log.
Is that what you are wanting to do?