Create new popular server languages widget

- Rename popular profile widget class and template
This commit is contained in:
Hypolite Petovan 2020-09-27 15:22:43 -04:00
commit e68b68110b
5 changed files with 61 additions and 4 deletions

View file

@ -0,0 +1,13 @@
<div>
<h3><?php echo $this->__('Filter by language')?></h3>
<ul>
<?php foreach ($languages as $language): ?>
<li>
<a href="<?php echo $this->escapeHtmlAttr($this->r('servers', ['language' => $language['language']])) ?>">
<?php echo $this->e(Friendica\Directory\Utils\L10n::localeToLanguageString($language['language'])) ?>
(<?php echo $this->e($language['total'])?>)
</a>
</li>
<?php endforeach; ?>
</ul>
</div>