aboutsummaryrefslogtreecommitdiff
path: root/mod/tagcloud/views/default/widgets/tagcloud/view.php
blob: 5ed71d66a758f1b27cff239becfe55651fb370f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

$num_items = $vars['entity']->num_items;
if (!isset($num_items)) {
	$num_items = 30;
}

$options = array(
	'owner_guid' => elgg_get_page_owner_guid(),
	'threshold' => 1,
	'limit' => $num_items,
	'tag_name' => 'tags',
);
echo elgg_view_tagcloud($options);