aboutsummaryrefslogtreecommitdiff
path: root/views/default/page_elements/footer.php
blob: 2f8a4804358aaf59248dd1b42689d017ab34b50a (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
<?php

	/**
	 * Elgg footer
	 * The standard HTML footer that displays across the site
	 * 
	 * @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/
	 * 
	 */
	 
	 // get the tools menu
	$menu = get_register('menu');

?>

<div class="clearfloat"></div>

<div id="layout_footer">
<table width="958" height="79" border="1" cellpadding="0" cellspacing="0">
	<tr>
		<td width="310" height="50">
		<!--
		<a href="http://www.elgg.org" target="_blank">
		<img src="<?php echo $vars['url']; ?>_graphics/footer_logo.gif" border="0" />
		</a>
		-->
		</td>
		
		<td width="648" height="50" align="right">
		<p class="footer_toolbar_links">
		<?php
			foreach($menu as $item) {
    			
    				echo "| <a href=\"{$item->value}\">" . $item->name . "</a>";
    			
			} 
		?>
		|
		</p>
		</td>
	</tr>
	
	<tr>
		<td width="310" height="28">
		<p><small><a href="http://www.elgg.org" target="_blank">Powered by Elgg</a></small></p>
		</td>
		
		<td width="648" height="28" align="right">
		<p class="footer_legal_links"><small>
		 | <a href="">Privacy Statement</a>
		 | <a href="">Security Statement</a>
		 | <a href="">Terms of Use</a> |
		</small>
		</p>
		</td>
	</tr>
</table>
</div><!-- /#layout_footer -->

<div class="clearfloat"></div>

</div><!-- /#page_wrapper -->
</div><!-- /#page_container -->

</body>
</html>