diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-17 23:11:30 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-17 23:11:30 +0000 |
commit | a37fe5ee43d3ac397af490ba42daf1d54b8bbb96 (patch) | |
tree | b2365ac9a66d4a5f03e41e7dbf07d48e0feb3192 | |
parent | dbf0b100aba0e2557a99f7dfcd921cdb7509903e (diff) | |
download | elgg-a37fe5ee43d3ac397af490ba42daf1d54b8bbb96.tar.gz elgg-a37fe5ee43d3ac397af490ba42daf1d54b8bbb96.tar.bz2 |
Updated docs for types and subtypes in elgg_get_entities().
git-svn-id: http://code.elgg.org/elgg/trunk@5796 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/entities.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index fcdc1ee6c..56d6b1749 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1747,9 +1747,9 @@ function get_entity($guid) { * * @param array $options Array in format: * - * types => NULL|STR entity type (SQL: type = '$type' OR...see below...) + * types => NULL|STR entity type (SQL: type IN ('type1', 'type2') Joined with subtypes by AND...see below) * - * subtypes => NULL|STR entity subtype (SQL: subtype = '$subtype'...see above) + * subtypes => NULL|STR entity subtype (SQL: subtype IN ('subtype1', 'subtype2)) * * type_subtype_pairs => NULL|ARR (array('type' => 'subtype')) (SQL: type = '$type' AND subtype = '$subtype') pairs * |