move HTML to template and add an optional hint that a global community page shows all arriving public postings

This commit is contained in:
Tobias Diekershoff 2017-11-10 20:25:17 +01:00
parent 3948539495
commit 3e1d0bf7a8
1 changed files with 8 additions and 4 deletions

View File

@ -28,8 +28,6 @@ function community_content(App $a, $update = 0) {
require_once('include/security.php');
require_once('include/conversation.php');
$o .= '<h3>' . t('Community') . '</h3>';
if (! $update) {
nav_set_selected('community');
}
@ -83,9 +81,15 @@ function community_content(App $a, $update = 0) {
$o .= conversation($a, $s, 'community', $update);
$o .= alt_pager($a, count($r));
$o .= alt_pager($a, count($r));
return $o;
$t = get_markup_template( "community.tpl" );
return replace_macros($t, array(
'$content' => $o,
'$header' => t("Community"),
'$show_global_community_hint' => (Config::get('system', 'community_page_style') == CP_GLOBAL_COMMUNITY && Config::get('system', 'show_global_community_hint')),
'$global_community_hint' => t("This comunity stream shows all public messages arriving on this node. They do not reflect the opinion of the nodes users.")
));
}
function community_getitems($start, $itemspage) {