From 14eeaf39e11b5056f3346042949358cf2d198583 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 18 Aug 2008 09:33:22 +0000 Subject: Removing a user disables their entities git-svn-id: https://code.elgg.org/elgg/trunk@1997 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/entities.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'engine/lib/entities.php') diff --git a/engine/lib/entities.php b/engine/lib/entities.php index a2026d982..0f9f24c81 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1495,6 +1495,26 @@ } } return false; + } + + /** + * Disables all of a user's entities + * + * @param int $owner_guid The owner GUID + * @return true|false Depending on success + */ + function disable_entities($owner_guid) { + + global $CONFIG; + $owner_guid = (int) $owner_guid; + if ($entity = get_entity($owner_guid)) { + if ($entity->canEdit()) { + $res = update_data("UPDATE {$CONFIG->dbprefix}entities set enabled='no' where owner_guid={$owner_guid} or container_guid = {$owner_guid}"); + return $res; + } + } + return false; + } /** -- cgit v1.2.3