aboutsummaryrefslogtreecommitdiff
path: root/views/failsafe/messages/errors/list.php
blob: c270d6c0a77dfb90626a9eca69d15a270d83ff3c (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
<?php
/**
 * Elgg list errors
 * Lists error messages
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 *
 * @uses $vars['object'] An array of error messages
 */

if (!empty($vars['object']) && is_array($vars['object'])) {

?>
<style type="text/css">
.messages_error {
	border:1px solid #D3322A;
	background:#F7DAD8;
	color:#000000;
	padding:3px 10px 3px 10px;
	margin:20px 0px 0px 0px;
	z-index: 9999;
	position:relative;
	width:95%;
}
</style>
	<div class="database_settings">
		<div class="messages_errors">

<?php
			foreach($vars['object'] as $error) {
				echo elgg_view('messages/errors/error',array('object' => $error));
				//echo "<hr />";
			}
?>
		</div>
	</div>
<?php
}