aboutsummaryrefslogtreecommitdiff
path: root/mod/custom_index_widgets/views/default/widgets/cloud_generic_index/edit.php
blob: 84b2fa861b9d7e8da6cbc6b761f428aaaec19a49 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  <?php
	$num_items = $vars['entity']->num_items;
	if (!isset($num_items)) $num_items = 10;

	$created_time_limit = $vars['entity']->created_time_limit;
	if (!isset($created_time_limit)) $created_time_limit = 'all';
	
	$widget_group = $vars["entity"]->widget_group;
  	if (!isset($widget_group)) $widget_group = ELGG_ENTITIES_ANY_VALUE;
	
	$metadata_name = $vars['entity']->metadata_name;
	if (!isset($metadata_name)) $metadata_name = "";

	$threshold = $vars['entity']->threshold;
	if (!isset($threshold)) $threshold = 1;
	
	$widget_title = $vars['entity']->widget_title;
	$widget_group = $vars["entity"]->widget_group;
	$widget_subtype = $vars["entity"]->widget_subtype;
	
	$guest_only = $vars['entity']->guest_only;
	if (!isset($guest_only)) $guest_only = "no";
	
	$box_style = $vars['entity']->box_style;
	if (!isset($box_style)) $box_style = "collapsable";
  ?>
  <p>
      <?php echo elgg_echo('custom_index_widgets:widget_title'); ?>
      :
      <?php
      echo elgg_view('input/text', array('name'=>'params[widget_title]', 'value'=>$widget_title));
      ?>
  </p>
  <p>
      <?php echo elgg_echo('custom_index_widgets:widget_subtype'); ?>
      : 
      <?php

	  $subtypes = get_data("SELECT subtype from {$CONFIG->dbprefix}entity_subtypes");
      $subtype_list = array();
	  $subtype_list['All'] = '';
	  $subtype_list['user'] = 'user';
	  $subtype_list['group'] = 'group';
	  
      if ($subtypes) {
          foreach ($subtypes as $data) {
              $subtype_list[$data->subtype] = $data->subtype;
          }
      }
      echo elgg_view('input/dropdown', array('name'=>'params[widget_subtype]', 'options_values'=>$subtype_list, 'value'=>$widget_subtype));
      ?>
  </p>
  <p>
      <?php echo elgg_echo('custom_index_widgets:widget_created_time_limit'); ?>
      : 
      <?php

	  $limits = array('all', 'month', 'week', 'day');
          $limit_list = array();
	  foreach($limits as $limit) {
		$limit_list[$limit] = elgg_echo("custom_index_widgets:time_limit:$limit");
	  }
          echo '<p>'.elgg_view('input/dropdown', array('name'=>'params[created_time_limit]', 'options_values'=>$limit_list, 'value'=>$created_time_limit))."</p>";
      ?>
  </p>

  <p>
      <?php echo elgg_echo('group'); ?>
      : 
      <?php
	  $groups = elgg_get_entities(array("type"=>'group','limit'=>100));
      $group_list = array();
      $group_list[0] = elgg_echo('custom_index_widgets:widget_all_groups');
      if ($groups) {
          foreach ($groups as $group) {
              $group_list[$group->getGUID()] = $group->name;
          }
      }
      echo elgg_view('input/dropdown', array('name'=>'params[widget_group]', 'options_values'=>$group_list, 'value'=>$widget_group));
      ?>
  </p>
  <p>
      <?php echo elgg_echo('custom_index_widgets:threshold'); ?>
      :
      <?php
      echo elgg_view('input/dropdown', array('name'=>'params[threshold]', 'options_values'=>array('1'=>'1', '3'=>'3', '5'=>'5', '8'=>'8', '10'=>'10', '12'=>'12', '15'=>'15', '20'=>'20', '30'=>'30', '40'=>'40', '50'=>'50', '100'=>'100', ), 'value'=>$thresholds));
      ?>
  </p>
  <p>
      <?php echo elgg_echo('custom_index_widgets:num_items'); ?>
      :
      <?php
      echo elgg_view('input/dropdown', array('name'=>'params[num_items]', 'options_values'=>array('1'=>'1', '3'=>'3', '5'=>'5', '8'=>'8', '10'=>'10', '12'=>'12', '15'=>'15', '20'=>'20', '30'=>'30', '40'=>'40', '50'=>'50', '100'=>'100', ), 'value'=>$num_items));
      ?>
  </p>
  <p>
      <?php echo elgg_echo('custom_index_widgets:metadata_name'); ?>
      :
      <?php
      echo elgg_view('input/text', array('name'=>'params[metadata_name]', 'value'=>$metadata_name));
      ?>
  </p>
<p>
      <?php echo elgg_echo('custom_index_widgets:box_style'); ?>
      :
      <?php
      echo elgg_view('input/dropdown', array('name'=>'params[box_style]', 
      										 'options_values'=>array('plain'=>'Plain', 'plain collapsable'=>'Plain and collapsable', 'collapsable'=>'Collapsable', 'standard' => 'No Collapsable'),
       										 'value'=>$box_style));
      ?>
</p>
<p>
      <?php echo elgg_echo('custom_index_widgets:guest_only'); ?>
      :
      <?php
      echo elgg_view('input/dropdown', array('name'=>'params[guest_only]', 
      										 'options_values'=>array('yes'=>'yes', 'no'=>'no'),
       										 'value'=>$guest_only));
      ?>
</p>