]> git.mxchange.org Git - friendica.git/commitdiff
move HTML to template and add an optional hint that a global community page shows...
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 10 Nov 2017 19:25:17 +0000 (20:25 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 10 Nov 2017 19:25:17 +0000 (20:25 +0100)
mod/community.php

index d428bddf8c4de8761cc43d950feb6c12ca2396f3..7a299357be02a85a6ced123e5a64b08cec94809a 100644 (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) {