aboutsummaryrefslogtreecommitdiff
path: root/views/installation/messages/errors/list.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/installation/messages/errors/list.php')
-rw-r--r--views/installation/messages/errors/list.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/views/installation/messages/errors/list.php b/views/installation/messages/errors/list.php
new file mode 100644
index 000000000..c270d6c0a
--- /dev/null
+++ b/views/installation/messages/errors/list.php
@@ -0,0 +1,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
+} \ No newline at end of file