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