From b070daa95241bc0c7d46011a3de7674fbf0c5e68 Mon Sep 17 00:00:00 2001 From: Fx Nion Date: Sun, 13 May 2012 19:56:15 +0200 Subject: v2.4 --- .../widgets/latest_activity_index/content.php | 20 +++++++ .../default/widgets/latest_activity_index/edit.php | 64 ++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 views/default/widgets/latest_activity_index/content.php create mode 100644 views/default/widgets/latest_activity_index/edit.php (limited to 'views/default/widgets/latest_activity_index') diff --git a/views/default/widgets/latest_activity_index/content.php b/views/default/widgets/latest_activity_index/content.php new file mode 100644 index 000000000..4010e0cb4 --- /dev/null +++ b/views/default/widgets/latest_activity_index/content.php @@ -0,0 +1,20 @@ +num_items; + if (!isset($num_items)) $num_items = 10; + + $widget_group = $vars["entity"]->widget_group; + if (!isset($widget_group)) $widget_group = 0; + + /* + $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); + */ + $widget_datas = elgg_list_river(0, $widget_group, '', '', '', '', $num_items,0,0,false); + + echo $widget_datas; +?> + diff --git a/views/default/widgets/latest_activity_index/edit.php b/views/default/widgets/latest_activity_index/edit.php new file mode 100644 index 000000000..622655307 --- /dev/null +++ b/views/default/widgets/latest_activity_index/edit.php @@ -0,0 +1,64 @@ + num_items; + if (!isset($num_items)) $num_items = 10; + + $widget_group = $vars["entity"]->widget_group; + if (!isset($widget_group)) $widget_group = 0; + + $widget_title = $vars['entity']->widget_title; + $widget_group = $vars["entity"]->widget_group; + + $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"; + ?> +

+ + : + 'params[widget_title]', 'value'=>$widget_title)); + ?> +

+

+ + : + 'group','limit'=>100)); + $groups = elgg_get_entities(array('type'=>'group')); + $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)); + ?> +

+

+ + : + '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)); + ?> +

+

+ + : + 'params[box_style]', + 'options_values'=>array('plain'=>'Plain', 'plain collapsable'=>'Plain and collapsable', 'collapsable'=>'Collapsable', 'standard' => 'No Collapsable'), + 'value'=>$box_style)); + ?> +

+

+ + : + 'params[guest_only]', + 'options_values'=>array('yes'=>'yes', 'no'=>'no'), + 'value'=>$guest_only)); + ?> +

-- cgit v1.2.3