mirror of
https://github.com/friendica/friendica
synced 2024-11-18 04:23:41 +00:00
Improve naming, make widget collapsable
This commit is contained in:
parent
4657a8c97a
commit
3ffb90cf07
2 changed files with 14 additions and 7 deletions
|
@ -117,11 +117,11 @@ class Community extends BaseModule
|
||||||
'$title' => DI::l10n()->t('Accounts'),
|
'$title' => DI::l10n()->t('Accounts'),
|
||||||
'$content' => self::$content,
|
'$content' => self::$content,
|
||||||
'$accounttype' => $parameters['accounttype'],
|
'$accounttype' => $parameters['accounttype'],
|
||||||
'$all' => DI::l10n()->t('All Accounts'),
|
'$all' => DI::l10n()->t('All'),
|
||||||
'$person' => DI::l10n()->t('Personal Accounts'),
|
'$person' => DI::l10n()->t('Persons'),
|
||||||
'$organisation' => DI::l10n()->t('Organisation Accounts'),
|
'$organisation' => DI::l10n()->t('Organisations'),
|
||||||
'$news' => DI::l10n()->t('News Accounts'),
|
'$news' => DI::l10n()->t('News'),
|
||||||
'$community' => DI::l10n()->t('Communities'),
|
'$community' => DI::l10n()->t('Forums'),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if (Feature::isEnabled(local_user(), 'trending_tags')) {
|
if (Feature::isEnabled(local_user(), 'trending_tags')) {
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
<div id="sidebar-community-accounts" class="widget">
|
<span id="sidebar-community-accounts-inflated" class="widget fakelink" onclick="openCloseWidget('sidebar-community-accounts', 'sidebar-community-accounts-inflated');">
|
||||||
<h3>{{$title}}</h3>
|
<h3>{{$title}}</h3>
|
||||||
|
</span>
|
||||||
|
<div id="sidebar-community-accounts" class="widget">
|
||||||
|
<span class="fakelink" onclick="openCloseWidget('sidebar-community-accounts', 'sidebar-community-accounts-inflated');">
|
||||||
|
<h3>{{$title}}</h3>
|
||||||
|
</span>
|
||||||
<ul class="sidebar-community-accounts-ul">
|
<ul class="sidebar-community-accounts-ul">
|
||||||
<li role="menuitem" class="sidebar-community-accounts-li{{if !$accounttype}} selected{{/if}}"><a href="community/{{$content}}">{{$all}}</a></li>
|
<li role="menuitem" class="sidebar-community-accounts-li{{if !$accounttype}} selected{{/if}}"><a href="community/{{$content}}">{{$all}}</a></li>
|
||||||
<li role="menuitem" class="sidebar-community-accounts-li{{if $accounttype == 'person'}} selected{{/if}}"><a href="community/{{$content}}/person">{{$person}}</a></li>
|
<li role="menuitem" class="sidebar-community-accounts-li{{if $accounttype == 'person'}} selected{{/if}}"><a href="community/{{$content}}/person">{{$person}}</a></li>
|
||||||
|
@ -9,3 +13,6 @@
|
||||||
<li role="menuitem" class="sidebar-community-accounts-li{{if $accounttype == 'community'}} selected{{/if}}"><a href="community/{{$content}}/community">{{$community}}</a></li>
|
<li role="menuitem" class="sidebar-community-accounts-li{{if $accounttype == 'community'}} selected{{/if}}"><a href="community/{{$content}}/community">{{$community}}</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
<script>
|
||||||
|
initWidget('sidebar-community-accounts', 'sidebar-community-accounts-inflated');
|
||||||
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue