Create new popular server languages widget
- Rename popular profile widget class and template
This commit is contained in:
parent
a1921c999d
commit
e68b68110b
5 changed files with 61 additions and 4 deletions
13
src/templates/widget/popularserverlanguages.phtml
Normal file
13
src/templates/widget/popularserverlanguages.phtml
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue