aboutsummaryrefslogtreecommitdiff
path: root/pages/videolist/all.php
blob: cd7500898dc931e72917d8f31a64530b5ae0d83a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
 * All videos
 *
 * @package ElggVideolist
 */

elgg_push_breadcrumb(elgg_echo('videolist'));

elgg_register_title_button();

$limit = get_input("limit", 10);

$title = elgg_echo('videolist:all');

$content = elgg_list_entities(array(
	'types' => 'object',
	'subtypes' => 'videolist',
	'limit' => $limit,
	'full_view' => FALSE
));

// get the latest comments on all videos
$comments = elgg_get_annotations(array(
	'type' => 'object',
	'subype' => 'videolist',
	'annotation_names' => array('generic_comment'),
	'limit' => 4,
	'order_by' => 'time_created desc',
));
$sidebar = elgg_view('annotation/latest_comments', array('comments' => $comments));

// tag-cloud display
$sidebar .= elgg_view_tagcloud(array(
	'type' => 'object',
	'subtype' => 'videolist',
	'limit' => 50,
));

elgg_set_context('videolist');
$body = elgg_view_layout('content', array(
	'filter_context' => 'all',
	'content' => $content,
	'title' => $title,
	'sidebar' => $sidebar,
));

// Finally draw the page
echo elgg_view_page($title, $body);