diff options
Diffstat (limited to 'engine/lib/upgrades/2010062302.php')
| -rw-r--r-- | engine/lib/upgrades/2010062302.php | 33 | 
1 files changed, 33 insertions, 0 deletions
| diff --git a/engine/lib/upgrades/2010062302.php b/engine/lib/upgrades/2010062302.php new file mode 100644 index 000000000..fe33e12ea --- /dev/null +++ b/engine/lib/upgrades/2010062302.php @@ -0,0 +1,33 @@ +<?php + +/** + * Make sure that everyone who belongs to a group is a member of the group's access collection + */ + + +elgg_set_ignore_access(TRUE); + +$params = array('type' => 'group', 'limit' => 0); +$groups = elgg_get_entities($params); +if ($groups) { +	foreach ($groups as $group) { +		$acl = $group->group_acl; + +		$query = "SELECT u.guid FROM {$CONFIG->dbprefix}users_entity u +			JOIN {$CONFIG->dbprefix}entity_relationships r +				ON u.guid = r.guid_one AND r.relationship = 'member' AND r.guid_two = $group->guid +			LEFT JOIN {$CONFIG->dbprefix}access_collection_membership a +				ON u.guid = a.user_guid AND a.access_collection_id = $acl +				WHERE a.user_guid IS NULL"; + +		$results = get_data($query); +		if ($results != FALSE) { +			foreach ($results as $user) { +				$insert = "INSERT INTO {$CONFIG->dbprefix}access_collection_membership +							(user_guid, access_collection_id) VALUES ($user->guid, $acl)"; +				insert_data($insert); +			} +		} +	} +} +elgg_set_ignore_access(FALSE); | 
