本文整理汇总了PHP中Conversation::deleteConversation方法的典型用法代码示例。如果您正苦于以下问题:PHP Conversation::deleteConversation方法的具体用法?PHP Conversation::deleteConversation怎么用?PHP Conversation::deleteConversation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Conversation
的用法示例。
在下文中一共展示了Conversation::deleteConversation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: deleteUser
public function deleteUser($user_id)
{
$allTheConversations = Conversation::displayConversations($user_id);
//delete all the conversations with all their messages
for ($row = 0; $row < count($allTheConversations); $row++) {
Conversation::deleteConversation($allTheConversations[$row]['conversationId']);
}
//get all the apartments of this user in an array
$apartmentArray = Product::displayOwnerProducts($user_id);
//delete all the selected apartments
for ($row = 0; $row < count($apartmentArray); $row++) {
Product::deleteProduct($apartmentArray[$row]['dwelling_Id'], $user_id);
}
//delete the user from the database
parent::executeSqlQuery("DELETE FROM bannedusers WHERE user_id = '{$user_id}'");
parent::executeSqlQuery("DELETE FROM users WHERE user_id = '{$user_id}'");
header("location: adminPanel.php?action=user");
}
示例2: deactivateAccount
public function deactivateAccount()
{
$user_id = $this->getUserId();
//get all the conversations of that user
$allTheConversations = Conversation::displayConversations($user_id);
//delete all the conversations with all their messages
for ($row = 0; $row < count($allTheConversations); $row++) {
Conversation::deleteConversation($allTheConversations[$row]['conversationId']);
}
//get all the apartments of this user in an array
$apartmentArray = Product::displayOwnerProducts($user_id);
//delete all the selected apartments
for ($row = 0; $row < count($apartmentArray); $row++) {
Product::deleteProduct($apartmentArray[$row]['dwelling_Id'], $user_id);
}
//delete the user from the database
parent::executeSqlQuery("DELETE FROM bannedusers WHERE user_id = '{$user_id}'");
parent::executeSqlQuery("DELETE FROM users WHERE user_id = '{$user_id}'");
parent::printMessage("MESSAGE", "Your account has been delete successfully!", "login.php");
}