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
|
<?php
/**
* Widget object
*
* @uses $vars['entity'] ElggWidget
* @uses $vars['show_access'] Show the access control in edit area? (true)
*/
$widget = $vars['entity'];
if (!elgg_instanceof($widget, 'object', 'widget')) {
return true;
}
$show_access = elgg_get_array_value('show_access', $vars, true);
// @todo catch for disabled plugins
$widget_types = elgg_get_widget_types('all');
$handler = $widget->handler;
$title = $widget->getTitle();
$edit_area = '';
$can_edit = $widget->canEdit();
if ($can_edit) {
$edit_area = elgg_view('layout/objects/widget/settings', array(
'widget' => $widget,
'show_access' => $show_access,
));
}
$controls = elgg_view('layout/objects/widget/controls', array(
'widget' => $widget,
'show_edit' => $edit_area != '',
));
if (elgg_view_exists("widgets/$handler/content")) {
$content = elgg_view("widgets/$handler/content", $vars);
} else {
elgg_deprecated_notice("widgets use content as the display view", 1.8);
$content = elgg_view("widgets/$handler/view", $vars);
}
$widget_id = "elgg-widget-$widget->guid";
$widget_instance = "elgg-widget-instance-$handler";
$widget_class = "elgg-module elgg-module-widget";
if ($can_edit) {
$widget_class .= " elgg-state-draggable $widget_instance";
} else {
$widget_class .= " elgg-state-fixed $widget_instance";
}
echo <<<HTML
<div class="$widget_class" id="$widget_id">
<div class="elgg-head">
<h3>$title</h3>
$controls
</div>
<div class="elgg-body">
$edit_area
<div class="elgg-widget-content">
$content
</div>
</div>
</div>
HTML;
|