move HTML to template and add an optional hint that a global community page shows all arriving public postings
This commit is contained in:
parent
3948539495
commit
3e1d0bf7a8
|
@ -28,8 +28,6 @@ function community_content(App $a, $update = 0) {
|
||||||
require_once('include/security.php');
|
require_once('include/security.php');
|
||||||
require_once('include/conversation.php');
|
require_once('include/conversation.php');
|
||||||
|
|
||||||
|
|
||||||
$o .= '<h3>' . t('Community') . '</h3>';
|
|
||||||
if (! $update) {
|
if (! $update) {
|
||||||
nav_set_selected('community');
|
nav_set_selected('community');
|
||||||
}
|
}
|
||||||
|
@ -85,7 +83,13 @@ function community_content(App $a, $update = 0) {
|
||||||
|
|
||||||
$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) {
|
function community_getitems($start, $itemspage) {
|
||||||
|
|
Loading…
Reference in a new issue