hook_deleteaccount.inc.php

来自「eGroupWare is a multi-user, web-based gr」· PHP 代码 · 共 33 行

PHP
33
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?