aboutsummaryrefslogtreecommitdiff
path: root/engine/lib
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-17 23:11:30 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-17 23:11:30 +0000
commita37fe5ee43d3ac397af490ba42daf1d54b8bbb96 (patch)
treeb2365ac9a66d4a5f03e41e7dbf07d48e0feb3192 /engine/lib
parentdbf0b100aba0e2557a99f7dfcd921cdb7509903e (diff)
downloadelgg-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
Diffstat (limited to 'engine/lib')
-rw-r--r--engine/lib/entities.php4
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
*