aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-24 10:27:36 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-24 10:27:36 +0000
commite0d99db103d1b0b0a73ae5b41ab3d332334cb099 (patch)
tree09df254f3345c0eb66694b90349f70da3e393f94 /engine
parentfb7050beab5a676e6a1071502dab16ae4104d37e (diff)
downloadelgg-e0d99db103d1b0b0a73ae5b41ab3d332334cb099.tar.gz
elgg-e0d99db103d1b0b0a73ae5b41ab3d332334cb099.tar.bz2
Revert.
git-svn-id: https://code.elgg.org/elgg/trunk@2303 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/lib/entities.php26
1 files changed, 7 insertions, 19 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index 92ef5a84e..ba376917b 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -458,9 +458,9 @@
* @param int $user_guid The user.
* @return bool
*/
- public function canWriteToContainer($user_guid = 0, $entity = null)
+ public function canWriteToContainer($user_guid = 0)
{
- return can_write_to_container($user_guid, $this->getGUID(), 'all', $entity);
+ return can_write_to_container($user_guid, $this->getGUID());
}
/**
@@ -1160,11 +1160,9 @@
* Determine whether a given user is able to write to a given container.
*
* @param int $user_guid The user guid, or 0 for $_SESSION['user']->getGUID()
- * @param int $container_guid The container, or 0 for the current page owner.
- * @param string $entity_type The type of entity, or all for all
- * @param ElggEntity $entity Optionally, the entity
+ * @param int $container_guid The container, or 0 for the current page owner.
*/
- function can_write_to_container($user_guid = 0, $container_guid = 0, $entity_type = 'all', $entity = null)
+ function can_write_to_container($user_guid = 0, $container_guid = 0, $entity_type = 'all')
{
global $CONFIG;
@@ -1194,7 +1192,7 @@
}
// See if anyone else has anything to say
- return trigger_plugin_hook('container_permissions_check',$entity_type,array('container' => $container, 'user' => $user, 'entity' => $entity), false);
+ return trigger_plugin_hook('container_permissions_check',$entity_type,array('container' => $container, 'user' => $user), false);
}
@@ -1224,18 +1222,8 @@
$site_guid = $CONFIG->site_guid;
$site_guid = (int) $site_guid;
if ($container_guid == 0) $container_guid = $owner_guid;
-
- $temptity = new ElggEntity();
- $temptity->type = $type;
- $temptity->subtype = $subtype;
- $temptity->owner_guid = $owner_guid;
- $temptity->access_id = $access_id;
- $temptity->site_guid = $site_guid;
- $temptity->container_guid = $container_guid;
- $temptity->time_created = $time;
- $temptity->time_updated = $time;
-
- if (!can_write_to_container($owner_guid, $container_guid, $type, $temptity)) return false;
+
+ if (!can_write_to_container($owner_guid, $container_guid, $type)) return false;
if ($type=="") throw new InvalidParameterException(elgg_echo('InvalidParameterException:EntityTypeNotSet'));