blob: 190739a15601a317b6bb209a77cd936a407f04c6 (
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
|
<?php
/**
* Elgg global system message list
* Lists all system messages
*
* @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/
*
* @uses $vars['object'] The array of message registers
*/
if (!empty($vars['object']) && is_array($vars['object'])) {
foreach($vars['object'] as $register => $list ) {
echo elgg_view("messages/{$register}/list", array('object' => $list));
}
}
?>
|