Add block reason editing in Model\Contact

This commit is contained in:
Hypolite Petovan 2019-05-15 19:28:00 -04:00
parent dd90fa9789
commit 79cb5b1bae
1 changed files with 6 additions and 6 deletions

View File

@ -1670,13 +1670,13 @@ class Contact extends BaseObject
/** /**
* @brief Blocks a contact * @brief Blocks a contact
* *
* @param int $uid * @param int $cid
* @return bool * @return bool
* @throws \Exception * @throws \Exception
*/ */
public static function block($uid) public static function block($cid, $reason = null)
{ {
$return = DBA::update('contact', ['blocked' => true], ['id' => $uid]); $return = DBA::update('contact', ['blocked' => true, 'block_reason' => $reason], ['id' => $cid]);
return $return; return $return;
} }
@ -1684,13 +1684,13 @@ class Contact extends BaseObject
/** /**
* @brief Unblocks a contact * @brief Unblocks a contact
* *
* @param int $uid * @param int $cid
* @return bool * @return bool
* @throws \Exception * @throws \Exception
*/ */
public static function unblock($uid) public static function unblock($cid)
{ {
$return = DBA::update('contact', ['blocked' => false], ['id' => $uid]); $return = DBA::update('contact', ['blocked' => false, 'block_reason' => null], ['id' => $cid]);
return $return; return $return;
} }