3 function friendika_content(&$a) {
6 $o .= '<h3>Friendika</h3>';
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>';
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>';
17 $o .= t('Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.') . '</p><p>';
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>';
24 if(count($a->plugins)) {
25 $o .= '<p>' . t('Installed plugins/addons/apps') . '</p>';
27 foreach($a->plugins as $p)
29 $o .= '<li>' . $p . '</li>';
33 $o .= '<p>' . t('No installed plugins/addons/apps');