]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
elgg_get_entities_from_metadata() and egef_annotations() support singular -> plural...
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 8 Jun 2010 02:07:34 +0000 (02:07 +0000)
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>
Tue, 8 Jun 2010 02:07:34 +0000 (02:07 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@6390 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/lib/annotations.php
engine/lib/metadata.php

index 13e7ed7902f2d58851dac2f7388920b3ea5da4f8..ac002f394cf8b9c80469d18389e46b09322bd204 100644 (file)
@@ -297,16 +297,16 @@ $value = "", $owner_guid = 0, $limit = 10, $offset = 0, $order_by = "asc", $time
        } else {
                $entity_guid = (int)$entity_guid;
        }
-       
+
        $entity_type = sanitise_string($entity_type);
-       
+
        if ($entity_subtype) {
                if (!$entity_subtype = get_subtype_id($entity_type, $entity_subtype)) {
                        // requesting a non-existing subtype: return false
                        return FALSE;
                }
        }
-       
+
        if ($name) {
                $name = get_metastring_id($name);
 
@@ -465,6 +465,9 @@ function elgg_get_entities_from_annotations(array $options = array()) {
 
        $options = array_merge($defaults, $options);
 
+       $singulars = array('annotation_name', 'annotation_value', 'annotation_name_value_pair', 'annotation_owner_guid');
+       $options = elgg_normalise_plural_options_array($options, $singulars);
+
        if (!$options = elgg_entities_get_metastrings_options('annotation', $options)) {
                return FALSE;
        }
@@ -737,14 +740,14 @@ function __get_annotations_calculate_x($sum = "avg", $entity_guid, $entity_type
        $entity_type = sanitise_string($entity_type);
        $timeupper = (int)$timeupper;
        $timelower = (int)$timelower;
-       
+
        if ($entity_subtype) {
                if (!$entity_subtype = get_subtype_id($entity_type, $entity_subtype)) {
                        // requesting a non-existing subtype: return false
                        return FALSE;
                }
        }
-       
+
        if ($name != '' AND !$name = get_metastring_id($name)) {
                return 0;
        }
@@ -837,14 +840,14 @@ function __get_entities_from_annotations_calculate_x($sum = "sum", $entity_type
 
        $sum = sanitise_string($sum);
        $entity_type = sanitise_string($entity_type);
-       
+
        if ($entity_subtype) {
                if (!$entity_subtype = get_subtype_id($entity_type, $entity_subtype)) {
                        // requesting a non-existing subtype: return false
                        return FALSE;
                }
        }
-       
+
        $name = get_metastring_id($name);
        $limit = (int) $limit;
        $offset = (int) $offset;
index d9b310b15de46b5fe04f2d17bdf8e2d86e04a51a..d28999a7714526b1a0bb4a29567d836c56e75892 100644 (file)
@@ -581,6 +581,9 @@ function elgg_get_entities_from_metadata(array $options = array()) {
 
        $options = array_merge($defaults, $options);
 
+       $singulars = array('metadata_name', 'metadata_value', 'metadata_name_value_pair', 'metadata_owner_guid');
+       $options = elgg_normalise_plural_options_array($options, $singulars);
+
        if (!$options = elgg_entities_get_metastrings_options('metadata', $options)) {
                return FALSE;
        }