blob: a010d1e9e510ff12ca5b157ddc8756dc05e6baeb (
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
|
<?php
$widgets = $vars['widgets'];
$context = $vars['context'];
$widget_types = elgg_get_widget_types($context);
$current_handlers = array();
foreach ($widgets as $column_widgets) {
foreach ($column_widgets as $widget) {
$current_handlers[] = $widget->handler;
}
}
?>
<div class="widgets_add_panel hidden">
<p>
<?php echo elgg_echo('widgets:add:description'); ?>
</p>
<ul>
<?php
foreach ($widget_types as $handler => $widget_type) {
$id = "widget_type_$handler";
// check if widget added and only one instance allowed
if ($widget_type->multiple == false && in_array($handler, $current_handlers)) {
$class = 'widget_unavailable';
$tooltip = elgg_echo('widget:unavailable');
} else {
$class = 'widget_available';
$tooltip = $widget_type->description;
}
if ($widget_type->multiple) {
$class .= ' widget_multiple';
} else {
$class .= ' widget_single';
}
echo "<li title=\"$tooltip\" id=\"$id\" class=\"$class\">$widget_type->name</li>";
}
?>
</ul>
<?php
$params = array(
'internalname' => 'widget_context',
'value' => $context
);
echo elgg_view('input/hidden', $params);
?>
<div class="clearfloat"></div>
</div>
|