diff options
author | Friendika <info@friendika.com> | 2011-03-27 16:35:56 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-27 16:35:56 -0700 |
commit | 76918ed5a59ac52486531f8bf4efec1180fc9d59 (patch) | |
tree | 3f00dd00518930786c8c12bbd99d77917f6b635f | |
parent | ff8bddb4a87633405d8ecf37f2517fbf302ae1a7 (diff) | |
download | volse-hubzilla-76918ed5a59ac52486531f8bf4efec1180fc9d59.tar.gz volse-hubzilla-76918ed5a59ac52486531f8bf4efec1180fc9d59.tar.bz2 volse-hubzilla-76918ed5a59ac52486531f8bf4efec1180fc9d59.zip |
info page
-rw-r--r-- | boot.php | 2 | ||||
-rw-r--r-- | mod/friendika.php | 47 |
2 files changed, 48 insertions, 1 deletions
@@ -2,7 +2,7 @@ set_time_limit(0); -define ( 'FRIENDIKA_VERSION', '2.1.929' ); +define ( 'FRIENDIKA_VERSION', '2.1.931' ); define ( 'DFRN_PROTOCOL_VERSION', '2.1' ); define ( 'DB_UPDATE_VERSION', 1045 ); diff --git a/mod/friendika.php b/mod/friendika.php new file mode 100644 index 000000000..4a8240a11 --- /dev/null +++ b/mod/friendika.php @@ -0,0 +1,47 @@ +<?php + +function friendika_content(&$a) { + + $o = ''; + $o .= '<h3>Friendika</h3>'; + + + $o .= '<p></p><p>'; + + $o .= 'View <a href="LICENSE">License</a>' . '<br /><br />'; + $o .= t('This is Friendika version') . ' ' . FRIENDIKA_VERSION . ' '; + $o .= t('running at web location') . ' ' . $a->get_baseurl() . '</p><p>'; + + $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>'; + + $o .= t('Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.') . '</p><p>'; + + $o .= t('Bug reports and issues: please visit') . ' ' . '<a href="http://bugs.friendika.com">Bugs.Friendika.com</a></p><p>'; + $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com') . '</p>'; + + $o .= '<p></p>'; + + if(count($a->plugins)) { + $o .= '<p>' . t('Installed plugins/addons/apps') . '</p>'; + $o .= '<ul>'; + foreach($a->plugins as $p) + if(strlen($p)) + $o .= '<li>' . $p . '</li>'; + $o .= '</ul>'; + } + else + $o .= '<p>' . t('No installed plugins/addons/apps'); + + return $o; + + + + + + + + + + + +}
\ No newline at end of file |