blob: 6a9a92e27f2370a684aeda7bc354087fc8db22dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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.
foreach ($sections as $section => $strings) {
echo '<p>' . elgg_echo("admin:widget:admin_welcome:$section", $strings) . '</p>';
}
|