aboutsummaryrefslogtreecommitdiff
path: root/views/default/admin/components/admin_page_layout.php
blob: 4f2a67d486223a049a300a60ece1bd0e64663d34 (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
<?php
/**
 * Elgg admin page layout.  Includes the admin sidebar and the ownerblock (for legacy support)
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */

$notices_html = '';
if ($notices = elgg_get_admin_notices()) {
	foreach ($notices as $notice) {
		$notices_html .= elgg_view_entity($notice);
	}
}

?>
<div id="elgg_content" class="clearfloat sidebar">
	<div id="elgg_sidebar">
		<?php
			echo elgg_view('admin/components/sidemenu', $vars);
			echo '<hr />';
			echo elgg_view('page_elements/owner_block');
		?>
	</div>

	<div id="elgg_page_contents" class="clearfloat">
		<?php
			if ($notices) {
				echo "<div class=\"admin_notices\">$notices_html</div>";
			}
			echo $vars['content'];
		?>
	</div>
</div>