aboutsummaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 21:59:10 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 21:59:10 +0000
commitdaadd01b5eaf9da933a9fa35a0dec57bdca790a6 (patch)
treef95157388d314a0dc549f48dd9cfc2dad0fecd86 /engine
parent59efd0b27c25fa0f759dbfd4ec29061d86b6c402 (diff)
downloadelgg-daadd01b5eaf9da933a9fa35a0dec57bdca790a6.tar.gz
elgg-daadd01b5eaf9da933a9fa35a0dec57bdca790a6.tar.bz2
Refs #650: Replaced uses of get_metadata_for_entity() by elgg_get_metadata().
git-svn-id: http://code.elgg.org/elgg/trunk@8177 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r--engine/classes/ElggEntity.php13
-rw-r--r--engine/classes/ElggFile.php6
-rw-r--r--engine/lib/metadata.php6
-rw-r--r--engine/lib/notification.php6
4 files changed, 24 insertions, 7 deletions
diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php
index cf716b37d..2adb322de 100644
--- a/engine/classes/ElggEntity.php
+++ b/engine/classes/ElggEntity.php
@@ -128,7 +128,10 @@ abstract class ElggEntity extends ElggData implements
return;
}
- $metadata_array = get_metadata_for_entity($this->guid);
+ $metadata_array = elgg_get_metadata(array(
+ 'guid' => $this->guid,
+ 'limit' => 0
+ ));
$this->attributes['guid'] = "";
@@ -871,7 +874,7 @@ abstract class ElggEntity extends ElggData implements
*
* Plugins can register for the 'entity:icon:url', <type> plugin hook
* to customize the icon for an entity.
- *
+ *
* @param string $size Size of the icon: tiny, small, medium, large
*
* @return string The URL
@@ -887,15 +890,15 @@ abstract class ElggEntity extends ElggData implements
$url = "_graphics/icons/default/$size.png";
$url = elgg_normalize_url($url);
-
+
$type = $this->getType();
$params = array(
'entity' => $this,
'size' => $size,
);
-
+
$url = elgg_trigger_plugin_hook('entity:icon:url', $type, $params, $url);
-
+
return elgg_normalize_url($url);
}
diff --git a/engine/classes/ElggFile.php b/engine/classes/ElggFile.php
index 2a0d6fb28..961a6ef13 100644
--- a/engine/classes/ElggFile.php
+++ b/engine/classes/ElggFile.php
@@ -315,7 +315,11 @@ class ElggFile extends ElggObject {
// If filestore meta set then retrieve filestore
// @todo Better way of doing this?
- $metas = get_metadata_for_entity($this->guid);
+ // ^ Yes....yes there is.
+ $metas = elgg_get_metadata(array(
+ 'guid' => $this->guid,
+ 'limit' => 0
+ ));
$parameters = array();
if (is_array($metas)) {
foreach ($metas as $meta) {
diff --git a/engine/lib/metadata.php b/engine/lib/metadata.php
index c123a89b0..600e72e71 100644
--- a/engine/lib/metadata.php
+++ b/engine/lib/metadata.php
@@ -328,6 +328,12 @@ function delete_metadata($id) {
*
* @see elgg_get_entities
*
+ * @warning 1.7's find_metadata() didn't support limits and returned all metadata.
+ * This function defaults to a limit of 25. There is probably not a reason
+ * for you to return all metadata unless you're exporting an entity,
+ * have other restraints in place, or are doing something horribly
+ * wrong in your code.
+ *
* @param array $options Array in format:
*
* metadata_names => NULL|ARR metadata names
diff --git a/engine/lib/notification.php b/engine/lib/notification.php
index 841920d8b..b48fec2fe 100644
--- a/engine/lib/notification.php
+++ b/engine/lib/notification.php
@@ -173,7 +173,11 @@ function get_user_notification_settings($user_guid = 0) {
$user_guid = elgg_get_logged_in_user_guid();
}
- $all_metadata = get_metadata_for_entity($user_guid);
+ // @todo: holy crap, really?
+ $all_metadata = elgg_get_metadata(array(
+ 'guid' => $user_guid,
+ 'limit' => 0
+ ));
if ($all_metadata) {
$prefix = "notification:method:";
$return = new stdClass;