aboutsummaryrefslogtreecommitdiff
path: root/views/default/navigation/toolbox.php
blob: 549efc5ad910080ac7d693492c6bbfaaaf17d960 (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
<?php

	/**
	 * Elgg standard toolbox
	 * The standard user toolbox that displays a users menu options
	 * This will be populated depending on the plugins active - only plugin navigation will appear here
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.org/
	 * 
	 */
	 
		$menu = get_register('menu');

		if (is_array($menu) && sizeof($menu) > 0) {
		
?>
<div class="elggtoolbar">
<ul class="drawers">

<?php

			foreach($menu as $item) {
				
?>

	<li class="drawer">
		<h2 class="drawer-handle"><?php echo $item->name ?></h2>
<?php

				if (sizeof($item->children) > 0 ) {
					echo "<ul>";
					foreach($item->children as $subitem) {
?>
		<li>
			<a href="<?php echo $subitem->value ?>"><?php echo $subitem->name; ?></a> |
		</li>
<?php
					}
					echo "</ul>";
					
				}

?>
	</li>

<?php
				
			}

?>

</ul>    
</div>

<?php

		}

?>

<script type="text/javascript">
$(document).ready(function () {
  $('li.drawer ul:not(:first)').hide(); // hide all ULs inside LI.drawer except the first one
	$('h2.drawer-handle').click(function () {
	// hide all the drawer contents
	$('li.drawer ul:visible').slideUp().prev().removeClass('open');
	// show the associated drawer content to 'this' (this is the current H2 element)
	// since the drawer content is the next element after the clicked H2, we find
	// it and show it using this:
	$(this).addClass('open').next().slideDown();
  });
});
</script>