aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/relationships.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-09-29 19:49:01 -0400
committercash <cash.costello@gmail.com>2011-09-29 19:49:01 -0400
commit1e3c1afcacac23f4f7d34657dce6ba462b7ed97e (patch)
treec7637ecdb84e0b190cccdc3232edd818a54869e3 /engine/lib/relationships.php
parenta458ae4e0f8e5b19884860fead6e5f901b95eca4 (diff)
downloadelgg-1e3c1afcacac23f4f7d34657dce6ba462b7ed97e.tar.gz
elgg-1e3c1afcacac23f4f7d34657dce6ba462b7ed97e.tar.bz2
Fixes #3827 updated documentation on @return for elgg_get_entities* functions
Diffstat (limited to 'engine/lib/relationships.php')
-rw-r--r--engine/lib/relationships.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php
index 9d5fd39b6..f1da65a34 100644
--- a/engine/lib/relationships.php
+++ b/engine/lib/relationships.php
@@ -235,6 +235,11 @@ function get_entity_relationships($guid, $inverse_relationship = FALSE) {
/**
* Return entities matching a given query joining against a relationship.
+ * Also accepts all options available to elgg_get_entities() and
+ * elgg_get_entities_from_metadata().
+ *
+ * @see elgg_get_entities
+ * @see elgg_get_entities_from_metadata
*
* @param array $options Array in format:
*
@@ -244,7 +249,7 @@ function get_entity_relationships($guid, $inverse_relationship = FALSE) {
*
* inverse_relationship => BOOL Inverse the relationship
*
- * @return array
+ * @return mixed int if count is true, an array of entity objects, or false on failure
* @since 1.7.0
*/
function elgg_get_entities_from_relationship($options) {
@@ -365,7 +370,7 @@ function elgg_list_entities_from_relationship(array $options = array()) {
*
* @param array $options An options array compatible with
* elgg_get_entities_from_relationship()
- * @return array
+ * @return mixed int if count is true, an array of entity objects, or false on failure
* @since 1.8.0
*/
function elgg_get_entities_from_relationship_count(array $options = array()) {