aboutsummaryrefslogtreecommitdiff
path: root/views/default/messages/list.php
blob: 84cec1b34ec076631be317de3092cebaaf9ea53f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
 * Elgg global system message list
 * Lists all system messages
 *
 * @package Elgg
 * @subpackage Core
 *
 * @uses $vars['object'] The array of message registers
 */
?>

<div id="elgg-system-messages">
<?php 
	if (!empty($vars['object']) && is_array($vars['object']) && sizeof($vars['object']) > 0) {
		foreach($vars['object'] as $register => $list ) {
			echo elgg_view("messages/{$register}/list", array('object' => $list));
		}
	}
?>
</div>