aboutsummaryrefslogtreecommitdiff
path: root/views/default/widgets/wrapper.php
blob: 20faf85a8c73ed76fbd0c5f9d71f90310fc1956c (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
<?php
/**
 * Elgg widget wrapper
 *
 * @package Elgg
 * @subpackage Core
 */

$widget = $vars['entity'];
if (!elgg_instanceof($widget, 'object', 'widget')) {
	return true;
}

// @todo catch for disabled plugins
$widgettypes = elgg_get_widget_types('all');

$handler = $widget->handler;

$title = $widget->getTitle();

$can_edit = $widget->canEdit();

$widget_id = "widget_$widget->guid";
$widget_instance = "widget_instance_$handler";

?>
<div class="widget draggable <?php echo $widget_instance?>" id="<?php echo $widget_id; ?>">
	<div class="widget_title drag_handle">
		<h3><?php echo $title; ?></h3>
	</div>
	<?php
	if ($can_edit) {
		echo elgg_view('widgets/controls', array('widget' => $widget));
	}
	?>
	<div class="widget_container">
		<?php
		if ($can_edit) {
			echo elgg_view('widgets/settings', array('widget' => $widget));
		}
		?>
		<div class="widget_content">
			<?php echo elgg_view("widgets/$handler/view", $vars); ?>
		</div>
	</div>
</div>