mirror of
https://github.com/friendica/friendica
synced 2024-11-18 09:03:42 +00:00
issue 2240 when no addon are installed hint the location of sources in the admin panel
This commit is contained in:
parent
e3fd0a269b
commit
7a7ffb2299
2 changed files with 8 additions and 0 deletions
|
@ -1441,6 +1441,8 @@ function admin_page_plugins(&$a){
|
|||
'$baseurl' => $a->get_baseurl(true),
|
||||
'$function' => 'plugins',
|
||||
'$plugins' => $plugins,
|
||||
'$pcount' => count($plugins),
|
||||
'$noplugshint' => sprintf( t('There are currently no plugins available on your node. You can find the official plugin repository at %1$s and might find other interesting plugins in the open plugin registry at %2$s'), 'https://github.com/friendica/friendica-addons', 'http://addons.friendi.ca'),
|
||||
'$form_security_token' => get_form_security_token("admin_themes"),
|
||||
));
|
||||
}
|
||||
|
|
|
@ -2,6 +2,11 @@
|
|||
<div id='adminpage'>
|
||||
<h1>{{$title}} - {{$page}}</h1>
|
||||
<a class="btn" href="{{$baseurl}}/admin/{{$function}}?a=r&t={{$form_security_token}}">{{$reload}}</a>
|
||||
{{if $pcount eq 0}}
|
||||
<div class="XXX">
|
||||
{{$noplugshint}}
|
||||
</div>
|
||||
{{else}}
|
||||
<ul id='pluginslist'>
|
||||
{{foreach $plugins as $p}}
|
||||
<li class='plugin {{$p.1}}'>
|
||||
|
@ -13,4 +18,5 @@
|
|||
</li>
|
||||
{{/foreach}}
|
||||
</ul>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue