diff options
| author | Christian Fowler <spider@viovio.com> | 2008-02-13 00:56:46 +0000 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2008-02-13 00:56:46 +0000 |
| commit | d5eea31bf059cc29560fbba2347a6ae9693f3372 (patch) | |
| tree | cece4caf70bb993c43c0d32aeb355dc63f13bc0e | |
| parent | d14849b0056891e6603acb704dd7816d7b8d65d2 (diff) | |
| download | users-d5eea31bf059cc29560fbba2347a6ae9693f3372.tar.gz users-d5eea31bf059cc29560fbba2347a6ae9693f3372.tar.bz2 users-d5eea31bf059cc29560fbba2347a6ae9693f3372.zip | |
add users_expunge_function service function called during user delete
| -rw-r--r-- | BitUser.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/BitUser.php b/BitUser.php index 751e559..97d44b4 100644 --- a/BitUser.php +++ b/BitUser.php @@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_users/BitUser.php,v 1.169 2008/02/04 21:50:39 spiderr Exp $ + * $Header: /cvsroot/bitweaver/_bit_users/BitUser.php,v 1.170 2008/02/13 00:56:46 spiderr Exp $ * * Lib for user administration, groups and permissions * This lib uses pear so the constructor requieres @@ -12,7 +12,7 @@ * All Rights Reserved. See copyright.txt for details and a complete list of authors. * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details * - * $Id: BitUser.php,v 1.169 2008/02/04 21:50:39 spiderr Exp $ + * $Id: BitUser.php,v 1.170 2008/02/13 00:56:46 spiderr Exp $ * @package users */ @@ -40,7 +40,7 @@ define("ACCOUNT_DISABLED", -6); * Class that holds all information for a given user * * @author spider <spider@steelsun.com> - * @version $Revision: 1.169 $ + * @version $Revision: 1.170 $ * @package users * @subpackage BitUser */ @@ -877,6 +877,7 @@ class BitUser extends LibertyAttachable { $this->purgeImage( 'avatar' ); $this->purgeImage( 'portrait' ); $this->purgeImage( 'logo' ); + $this->invokeServices( 'users_expunge_function' ); $userTables = array( 'users_semaphores', // these have to be dealt with functions in there own packages |
