diff options
author | Pete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-10 13:43:33 +0000 |
---|---|---|
committer | Pete Harris <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-10 13:43:33 +0000 |
commit | 0c7547f6de3b7ff2ec7a79b2f636add2be341e85 (patch) | |
tree | d4637b14961d0c381d94f77ec19cc5e138abc5bb /index.php | |
parent | d4b3f881b65d5c99ab07c584849d27dc7d1b72b0 (diff) | |
download | elgg-0c7547f6de3b7ff2ec7a79b2f636add2be341e85.tar.gz elgg-0c7547f6de3b7ff2ec7a79b2f636add2be341e85.tar.bz2 |
Added sidebar contents and tagcloud to various videolist views
git-svn-id: http://code.elgg.org@6435 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -57,6 +57,8 @@ $area3 = elgg_view("videolist/sidebar", array("object_type" => 'videolist')); $comments = get_annotations(0, "object", "videolist", "generic_comment", "", 0, 4, 0, "desc"); $area3 .= elgg_view('annotation/latest_comments', array('comments' => $comments)); +// tag-cloud display +$area3 .= display_tagcloud(0, 50, 'tags', 'object', 'videolist'); // Get objects $area2 = elgg_list_entities(array('types' => 'object', 'subtypes' => 'videolist', 'container_guids' => page_owner(), 'limit' => 10)); |