aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/elgglib.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/elgglib.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/elgglib.php')
-rw-r--r--engine/lib/elgglib.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php
index 166757ea4..31693906d 100644
--- a/engine/lib/elgglib.php
+++ b/engine/lib/elgglib.php
@@ -350,9 +350,10 @@
* @param int $count The total number of entities across all pages
* @param int $offset The current indexing offset
* @param int $limit The number of entities to display per page
+ * @param true|false $fullview Whether or not to display the full view (default: true)
* @return string The list of entities
*/
- function elgg_view_entity_list($entities, $count, $offset, $limit) {
+ function elgg_view_entity_list($entities, $count, $offset, $limit, $fullview = true) {
$count = (int) $count;
$offset = (int) $offset;
@@ -372,7 +373,7 @@
if (is_array($entities) && sizeof($entities) > 0) {
foreach($entities as $entity) {
- $html .= elgg_view_entity($entity, "", false);
+ $html .= elgg_view_entity($entity, "", $fullview);
}
}