aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/relationships.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-27 11:25:31 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-27 11:25:31 +0000
commit41fed2568509d6eb581be9aa1df000b25b079d63 (patch)
treef318c78f1337d944a0aaf4798db17b5ebf4c30fc /engine/lib/relationships.php
parent689c997f58b25df81164df9acdf5ebd9c1ad2bc9 (diff)
downloadelgg-41fed2568509d6eb581be9aa1df000b25b079d63.tar.gz
elgg-41fed2568509d6eb581be9aa1df000b25b079d63.tar.bz2
Added a 'display full view' parameter to all of the listings functions
git-svn-id: https://code.elgg.org/elgg/trunk@1170 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/relationships.php')
-rw-r--r--engine/lib/relationships.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/engine/lib/relationships.php b/engine/lib/relationships.php
index 642b2f5c6..b7008409c 100644
--- a/engine/lib/relationships.php
+++ b/engine/lib/relationships.php
@@ -513,16 +513,17 @@
* @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)
* @return string The viewable list of entities
*/
- function list_entities_from_relationship($relationship, $relationship_guid, $inverse_relationship = false, $type = "", $subtype = "", $owner_guid = 0, $limit = 10) {
+ function list_entities_from_relationship($relationship, $relationship_guid, $inverse_relationship = false, $type = "", $subtype = "", $owner_guid = 0, $limit = 10, $fullview = true) {
$limit = (int) $limit;
$offset = (int) get_input('offset');
$count = get_entities_from_relationship($relationship, $relationship_guid, $inverse_relationship, $type, $subtype, $owner_guid, "", $limit, 0, true);
$entities = get_entities_from_relationship($relationship, $relationship_guid, $inverse_relationship, $type, $subtype, $owner_guid, "", $limit, 0);
- return elgg_view_entity_list($entities, $count, $offset, $Limit);
+ return elgg_view_entity_list($entities, $count, $offset, $limit, $fullview);
}