blob: f78451c845e170cfab738272249103a7c2c1ca3d (
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
|
<?php
/**
* Elgg Message board display page
*
* @package ElggMessageBoard
*/
// 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("messageboard/messageboard_content", array('annotation' => $content));
}
//close the wrapper div
echo "</div>";
} else {
echo "<div class='contentWrapper'>" . elgg_echo("messageboard:none") . "</div>";
}
|