⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hook_deleteaccount.inc.php

📁 eGroupWare is a multi-user, web-based groupware suite developed on a custom set of PHP-based APIs. C
💻 PHP
字号:
<?php  /**************************************************************************\  * eGroupWare                                                               *  * http://www.egroupware.org                                                 *  * Written by Mark Peters <skeeter@phpgroupware.org>                        *  * --------------------------------------------                             *  *  This program is free software; you can redistribute it and/or modify it *  *  under the terms of the GNU General Public License as published by the   *  *  Free Software Foundation; either version 2 of the License, or (at your  *  *  option) any later version.                                              *  \**************************************************************************/	/* $Id: hook_deleteaccount.inc.php,v 1.2 2004/01/27 16:58:16 reinerj Exp $ */		// Delete all records for a user	$table_locks = Array('phpgw_et_notes');	$db2 = $GLOBALS['phpgw']->db;	$db2->lock($table_locks);	$new_owner = intval(get_var('new_owner',Array('POST')));	$account_id = intval(get_var('account_id',Array('POST')));	if($new_owner==0)	{		$db2->query('DELETE FROM phpgw_et_notes WHERE note_owner='.$account_id,__LINE__,__FILE__);	}	else	{		$db2->query('UPDATE phpgw_et_notes SET note_owner='.$new_owner			. ' WHERE note_owner='.$account_id,__LINE__,__FILE__);	}	$db2->unlock();?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -