From 413495dbecd52a3f61735269d84f623df4954281 Mon Sep 17 00:00:00 2001 From: brettp Date: Fri, 31 Dec 2010 17:29:15 +0000 Subject: Refs #2583, #2754: Merged r7445-7446 to trunk. git-svn-id: http://code.elgg.org/elgg/trunk@7794 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/relationships.php | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'engine/lib/relationships.php') diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php index ff069fa48..123778d89 100644 --- a/engine/lib/relationships.php +++ b/engine/lib/relationships.php @@ -414,12 +414,29 @@ function elgg_list_entities_from_relationship(array $options = array()) { } /** + * Returns a viewable list of entities by relationship + * + * @see elgg_view_entity_list + * * @deprecated 1.8 Use elgg_list_entities_from_relationship() + * + * @param string $relationship The relationship eg "friends_of" + * @param int $relationship_guid The guid of the entity to use query + * @param bool $inverse_relationship Reverse the normal function of the query to instead say "give me all entities for whome $relationship_guid is a $relationship of" + * @param string $type The type of entity (eg 'object') + * @param string $subtype The entity subtype + * @param int $owner_guid The owner (default: all) + * @param int $limit The number of entities to display on a page + * @param true|false $fullview Whether or not to display the full view (default: true) + * @param true|false $viewtypetoggle Whether or not to allow gallery view + * @param true|false $pagination Whether to display pagination (default: true) + * @param bool $order_by SQL order by clause + * @return string The viewable list of entities */ function list_entities_from_relationship($relationship, $relationship_guid, $inverse_relationship = false, $type = ELGG_ENTITIES_ANY_VALUE, $subtype = ELGG_ENTITIES_ANY_VALUE, $owner_guid = 0, $limit = 10, -$fullview = true, $listtypetoggle = false, $pagination = true) { +$fullview = true, $listtypetoggle = false, $pagination = true, $order_by = '') { elgg_deprecated_notice("list_entities_from_relationship was deprecated by elgg_list_entities_from_relationship()!", 1.8); return elgg_list_entities_from_relationship(array( @@ -429,6 +446,7 @@ $fullview = true, $listtypetoggle = false, $pagination = true) { 'types' => $type, 'subtypes' => $subtype, 'owner_guid' => $owner_guid, + 'order_by' => $order_by, 'limit' => $limit, 'full_view' => $fullview, 'list_type_toggle' => $listtypetoggle, -- cgit v1.2.3