blob: e9b40b5c3e820f258f3ccce53b6070fff8683260 (
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
|
<?php
/**
* Elgg standard tools drop down
* 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');
//var_export($menu);
if (is_array($menu) && sizeof($menu) > 0) {
?>
<ul id="tools_menu">
<li><a href="#">Tools</a>
<ul>
<?php
foreach($menu as $item) {
echo "<li><a href=\"{$item->value}\">" . $item->name . "</a></li>";
}
?>
</ul>
</li>
</ul>
<?php
}
?>
<script type="text/javascript">
function tools_menu(){
$(" #tools_menu li").hover(function(){
$(this).parent().parent().parent().find("#tools_menu a").addClass('tools_menu_on');
},function(){
$(this).parent().parent().parent().find("#tools_menu a").removeClass('tools_menu_on');
});
}
$(document).ready(function(){
tools_menu();
});
</script>
|