blob: f4b92ea66b0123ffbb87424a7e49f9f3c66ec7ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Welcome widget for admins
*/
// section => string replacements.
$sections = array(
'intro' => array(),
'admin_overview' => array(),
'outro' => array()
);
// don't use longtext because it filters output.
// that's annoying.
echo '<div class="elgg-output">';
foreach ($sections as $section => $strings) {
echo '<p>' . elgg_echo("admin:widget:admin_welcome:$section", $strings) . '</p>';
}
echo '</div>';
|