diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-01 06:17:11 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-01 06:17:11 +0000 |
commit | 28f259e72ea8dace183cbb342a22e5ebff2a97d6 (patch) | |
tree | 31f9c651d5f533ae3c071fbede7cafb8b479de40 /engine | |
parent | 234847a4050b615a1cd332472299f865e77a94f9 (diff) | |
download | elgg-28f259e72ea8dace183cbb342a22e5ebff2a97d6.tar.gz elgg-28f259e72ea8dace183cbb342a22e5ebff2a97d6.tar.bz2 |
Updated documentation for elgg_get_entities().
git-svn-id: http://code.elgg.org/elgg/trunk@3881 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/entities.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index fcf870e13..7d8a6b90a 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1654,11 +1654,11 @@ function get_entity($guid) { * * @param array $options Array in format: * - * types => NULL|STR entity type + * types => NULL|STR entity type (SQL: type = '$type' OR...see below...) * - * subtypes => NULL|STR entity subtype + * subtypes => NULL|STR entity subtype (SQL: subtype = '$subtype'...see above) * - * type_subtype_pairs => NULL|ARR (type = '$type' AND subtype = '$subtype') pairs + * type_subtype_pairs => NULL|ARR (array('type' => 'subtype')) (SQL: type = '$type' AND subtype = '$subtype') pairs * * owner_guids => NULL|INT entity guid * |