diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-08 14:34:29 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-08 14:34:29 +0000 |
commit | 50606888ddaa348bdabcd1e735eed55e26ff9c75 (patch) | |
tree | 1b507279675532d81ae31037de08bcae92eccea6 /engine/lib/entities.php | |
parent | 382706c75d030ee57e9999e1916314a6dbf43659 (diff) | |
download | elgg-50606888ddaa348bdabcd1e735eed55e26ff9c75.tar.gz elgg-50606888ddaa348bdabcd1e735eed55e26ff9c75.tar.bz2 |
Refs #640: Renamed and moved entities.php:disable_entities to user.php:disable_user_entities
git-svn-id: https://code.elgg.org/elgg/trunk@2545 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r-- | engine/lib/entities.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index 55a888239..a2f671d30 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1656,28 +1656,6 @@ } /** - * 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 (trigger_elgg_event('disable',$entity->type,$entity)) { - 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; - - } - - /** * Enable an entity again. * * @param int $guid |