diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 11:25:31 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 11:25:31 +0000 |
commit | 41fed2568509d6eb581be9aa1df000b25b079d63 (patch) | |
tree | f318c78f1337d944a0aaf4798db17b5ebf4c30fc /engine/lib/relationships.php | |
parent | 689c997f58b25df81164df9acdf5ebd9c1ad2bc9 (diff) | |
download | elgg-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.php | 5 |
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);
} |