本文整理匯總了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");
}