blob: 70d80f41c486b56c30e88d60abb6833d9b092324 (
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
|
<?php
$widgets = $vars['widgets'];
$widget_types = elgg_get_widget_types();
$context = $vars['context'];
?>
<div class="widgets_add_panel hidden">
<p>
<?php echo elgg_echo('widgets:add:description'); ?>
</p>
<ul>
<?php
foreach ($widget_types as $handler => $widget_type) {
$options = array(
'text' => $widget_type->name,
'href' => '#',
'internalid' => $handler,
);
$link = elgg_view('output/url', $options);
echo "<li>$link</li>";
}
?>
</ul>
<?php
$params = array(
'internalname' => 'widget_context',
'value' => $context
);
echo elgg_view('input/hidden', $params);
?>
<div class="clearfloat"></div>
</div>
|