Merge pull request #9280 from annando/account-selector

Account selector for the community page
This commit is contained in:
Hypolite Petovan 2020-09-26 08:45:28 -04:00 committed by GitHub
commit 4657a8c97a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View file

@ -113,6 +113,17 @@ class Community extends BaseModule
$o .= $pager->renderMinimal(count($items));
DI::page()['aside'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/community_accounts.tpl'), [
'$title' => DI::l10n()->t('Accounts'),
'$content' => self::$content,
'$accounttype' => $parameters['accounttype'],
'$all' => DI::l10n()->t('All Accounts'),
'$person' => DI::l10n()->t('Personal Accounts'),
'$organisation' => DI::l10n()->t('Organisation Accounts'),
'$news' => DI::l10n()->t('News Accounts'),
'$community' => DI::l10n()->t('Communities'),
]);
if (Feature::isEnabled(local_user(), 'trending_tags')) {
DI::page()['aside'] .= TrendingTags::getHTML(self::$content);
}