Add block/unblock methods to Contact class
This commit is contained in:
parent
16d0c30328
commit
5fd4086fdc
|
@ -821,4 +821,30 @@ class Contact extends BaseObject
|
||||||
|
|
||||||
return $account_type;
|
return $account_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Blocks a contact
|
||||||
|
*
|
||||||
|
* @param int $uid
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public static function block($uid)
|
||||||
|
{
|
||||||
|
$return = dba::update('contact', ['blocked' => true], ['id' => $uid]);
|
||||||
|
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Unblocks a contact
|
||||||
|
*
|
||||||
|
* @param int $uid
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public static function unblock($uid)
|
||||||
|
{
|
||||||
|
$return = dba::update('contact', ['blocked' => false], ['id' => $uid]);
|
||||||
|
|
||||||
|
return $return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue