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

$widgettypes = get_widget_types();

$widget = $vars['entity'];

if ($vars['entity'] instanceof ElggObject && $vars['entity']->getSubtype() == 'widget') {
	$handler = $vars['entity']->handler;
	$title = $widgettypes[$vars['entity']->handler]->name;
	if (!$title) {
		$title = $handler;
	}
} else {
	$handler = "error";
	$title = elgg_echo("error");
}

$title = "Widget Title";

$display_view = "widgets/$handler/view";
$edit_view = "widgets/$handler/edit";

?>
<div class="widget draggable" id="widget_<?php echo $widget->guid; ?>">
	<div class="widget_title drag_handle">
		<h3><?php echo $title; ?></h3>
		<?php
		if ($widget->canEdit()) {
			echo elgg_view('widgets/controls', array('widget' => $widget));
		}
		?>
	</div>
	<div class="widget_content">
		<?php echo elgg_view($display_view, $vars); ?>
		<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
	</div>
</div>