aboutsummaryrefslogtreecommitdiff
path: root/views/default/widgets/wrapper.php
blob: a5d36b1e3176c9f3169013e359c1c902797f3719 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php

	/**
	 * Elgg widget wrapper
	 * 
	 * @package Elgg
	 * @subpackage Core

	 * @author Curverider Ltd

	 * @link http://elgg.org/
	 */

	static $widgettypes;
	
	$callback = get_input('callback');
	
	if (!isset($widgettypes)) $widgettypes = get_widget_types();
	
	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"); 
	}
	
	if ($callback != "true") {
	
?>

	<div id="widget<?php echo $vars['entity']->getGUID(); ?>">
	<div class="collapsable_box">
	<div class="collapsable_box_header">
	<a href="javascript:void(0);" class="toggle_box_contents">-</a><?php if ($vars['entity']->canEdit()) { ?><a href="javascript:void(0);" class="toggle_box_edit_panel"><?php echo elgg_echo('edit'); ?></a><?php } ?>
	<h1><?php echo $title; ?></h1>
	</div>
	<?php

		if ($vars['entity']->canEdit()) {
	
	?>
	<div class="collapsable_box_editpanel"><?php 
		
		echo elgg_view('widgets/editwrapper', 
						array(
								'body' => elgg_view("widgets/{$handler}/edit",$vars),
								'entity' => $vars['entity']
							  )
					   ); 
		
	?></div><!-- /collapsable_box_editpanel -->
	<?php

		}
	
	?>
	<div class="collapsable_box_content">
		<?php 

		echo "<div id=\"widgetcontent{$vars['entity']->getGUID()}\">";
		
		
	} else { // end if callback != "true"

		if (elgg_view_exists("widgets/{$handler}/view"))
			echo elgg_view("widgets/{$handler}/view",$vars);
		else
			echo elgg_echo('widgets:handlernotfound');

?>

<script language="javascript">
 $(document).ready(function(){
   	setup_avatar_menu();
 });

</script>


<?php
		
	}
		
	if ($callback != "true") {
		echo elgg_view('ajax/loader');
		echo "</div>";
		
		?>
	</div><!-- /.collapsable_box_content -->
	</div><!-- /.collapsable_box -->	
	</div>
	
<script type="text/javascript">
$(document).ready(function() {

	$("#widgetcontent<?php echo $vars['entity']->getGUID(); ?>").load("<?php echo $vars['url']; ?>pg/view/<?php echo $vars['entity']->getGUID(); ?>?shell=no&username=<?php echo page_owner_entity()->username; ?>&context=widget&callback=true");

	// run function to check for widgets collapsed/expanded state
	var forWidget = "widget<?php echo $vars['entity']->getGUID(); ?>";
	widget_state(forWidget);


});
</script>
	
<?php

	}

?>