]> git.mxchange.org Git - friendica.git/blob - mod/friendika.php
missing acl selector after merge
[friendica.git] / mod / friendika.php
1 <?php
2
3 function friendika_content(&$a) {
4
5         $o = '';
6         $o .= '<h3>Friendika</h3>';
7
8
9         $o .= '<p></p><p>';
10
11         $o .= 'View <a href="LICENSE">License</a>' . '<br /><br />';
12         $o .= t('This is Friendika version') . ' ' . FRIENDIKA_VERSION . ' ';
13         $o .= t('running at web location') . ' ' . $a->get_baseurl() . '</p><p>';
14
15         $o .= t('Shared content within the Friendika network is provided under the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 license</a>') . '</p><p>';
16
17         $o .= t('Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.') . '</p><p>';        
18
19         $o .= t('Bug reports and issues: please visit') . ' ' . '<a href="http://bugs.friendika.com">Bugs.Friendika.com</a></p><p>';
20         $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com') . '</p>';
21
22         $o .= '<p></p>';
23
24         if(count($a->plugins)) {
25                 $o .= '<p>' . t('Installed plugins/addons/apps') . '</p>';
26                 $o .= '<ul>';
27                 foreach($a->plugins as $p)
28                         if(strlen($p))
29                                 $o .= '<li>' . $p . '</li>';
30                 $o .= '</ul>';
31         }
32         else
33                 $o .= '<p>' . t('No installed plugins/addons/apps');
34         
35         return $o;
36
37
38
39
40
41
42
43
44
45
46
47 }