aboutsummaryrefslogtreecommitdiff
path: root/mod/custom_index_widgets/views/default/widgets/latest_bookmarks_index/content.php
blob: 2622a63eaaf8defa107dac2c82990cb7a44ce349 (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
<?php 
  
  $object_type ='bookmarks';
  
  $num_items = $vars['entity']->num_items;
  if (!isset($num_items)) $num_items = 10;
  
  $widget_group = $vars["entity"]->widget_group;
  if (!isset($widget_group)) $widget_group = ELGG_ENTITIES_ANY_VALUE;
  
  $site_categories = $vars['config']->site->categories;
  $widget_categorie = $vars['entity']->widget_categorie;
  $widget_context_mode = $vars['entity']->widget_context_mode;
  if (!isset($widget_context_mode)) $widget_context_mode = 'search';
  elgg_set_context($widget_context_mode);
  
  if ($site_categories == NULL || $widget_categorie == NULL) {
    $widget_datas = elgg_list_entities(array(
		'type'=>'object',
		'subtype'=>$object_type,
		'container_guids' => $widget_group,
		'limit'=>$num_items,
		'full_view' => false,
		'view_type_toggle' => false,
		'pagination' => false));
} else {

	$widget_datas = elgg_list_entities_from_metadata(array(
		'type'=>'object',
		'subtype'=>$object_type,
		'container_guids' => $widget_group,
		'limit'=>$num_items,
		'full_view' => false,
		'view_type_toggle' => false,
		'pagination' => false,
		'metadata_name' => 'universal_categories',
		'metadata_value' => $widget_categorie,
		));
}

echo $widget_datas;
?>