aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/commentwall/commentwall.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile/views/default/profile/commentwall/commentwall.php')
-rw-r--r--mod/profile/views/default/profile/commentwall/commentwall.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/profile/views/default/profile/commentwall/commentwall.php b/mod/profile/views/default/profile/commentwall/commentwall.php
new file mode 100644
index 000000000..9c1ff3fdb
--- /dev/null
+++ b/mod/profile/views/default/profile/commentwall/commentwall.php
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Elgg Commentwall display page
+ */
+
+// If there is any content to view, view it
+if (is_array($vars['annotation']) && sizeof($vars['annotation']) > 0) {
+
+ //start the div which will wrap all the message board contents
+ echo "<div id=\"messageboard_wrapper\">";
+
+ //loop through all annotations and display
+ foreach($vars['annotation'] as $content) {
+ echo elgg_view("profile/commentwall/commentwall_content", array('annotation' => $content));
+ }
+
+ //close the wrapper div
+ echo "</div>";
+
+} else {
+ echo "<div class='ContentWrapper'>" . elgg_echo("profile:commentwall:none") . "</div>";
+} \ No newline at end of file