View Full Version : Recipients (PM)
SiSoft
05-19-2012, 01:20 PM
Hi,
I want to disable receiving PMs to some members who have specific values in some users fields
But I can't find the right variables to do that, can any one help me ?
Thank you.
You could do something like this: create a plugin using hook pmdata_presave and code like:
foreach ($this->info['recipients'] as $u)
{
$user = fetch_userinfo($u['userid']); // Note: need to do this because $this->info['recipients'] does not contain profile fields
if (some check of fields in $user)
{
$this->errors[] = "Can't send PM to user " . $user['username'];
}
}
SiSoft
05-20-2012, 04:56 PM
Thanks a lot it works, but I have just a little problem, when I do an If condition on both user's fields (the sender & the reciever) it doesn't work
like
if($vbulletin->userinfo['field1']=="XX"){
foreach ($this->info['recipients'] as $u){
$user = fetch_userinfo($u['userid']); // Note: need to do this because $this->info['recipients'] does not contain profile fields
if ($user['field1']=="YY")
{
$this->errors[] = "Can't send PM to user " . $user['username'];
}
}
}
You should probably do something like this:
$fromuserid = intval($this->fetch_field('fromuserid'));
$fromuser = fetch_userinfo($fromuserid);
if(is_array($fromuser) AND $fromuser['field1']=="XX"){
// etc
I'm pretty sure the $fromuser will always be equivalent to $vbulletin->userinfo, but the rest of the pm datamanager code is written without making that assumption, so it's probably best to stay with that.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.