aboutsummaryrefslogtreecommitdiffstats
path: root/mod/friendica.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-30 15:12:07 -0700
committerFriendika <info@friendika.com>2011-10-30 15:12:07 -0700
commitc00aacf9e58cbba11fc912a615a0c272f90bd885 (patch)
treea11813fde193a161ff7ca1d6488234d13524b24c /mod/friendica.php
parente4dd2a5a9abd6a9952c2acb5b29628e4825f2904 (diff)
downloadvolse-hubzilla-c00aacf9e58cbba11fc912a615a0c272f90bd885.tar.gz
volse-hubzilla-c00aacf9e58cbba11fc912a615a0c272f90bd885.tar.bz2
volse-hubzilla-c00aacf9e58cbba11fc912a615a0c272f90bd885.zip
rename
Diffstat (limited to 'mod/friendica.php')
-rw-r--r--mod/friendica.php68
1 files changed, 68 insertions, 0 deletions
diff --git a/mod/friendica.php b/mod/friendica.php
new file mode 100644
index 000000000..363f1409f
--- /dev/null
+++ b/mod/friendica.php
@@ -0,0 +1,68 @@
+<?php
+
+function friendica_init(&$a) {
+ if ($a->argv[1]=="json"){
+ $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
+
+ if (isset($a->config['admin_email']) && $a->config['admin_email']!=''){
+ $r = q("SELECT username, nickname FROM user WHERE email='%s'", $a->config['admin_email']);
+ $admin = array(
+ 'name' => $r[0]['username'],
+ 'profile'=> $a->get_baseurl().'/profile/'.$r[0]['nickname'],
+ );
+ } else {
+ $admin = false;
+ }
+
+ $data = Array(
+ 'version' => FRIENDIKA_VERSION,
+ 'url' => z_root(),
+ 'plugins' => $a->plugins,
+ 'register_policy' => $register_policy[$a->config['register_policy']],
+ 'admin' => $admin,
+ 'site_name' => $a->config['sitename'],
+ 'platform' => FRIENDIKA_PLATFORM,
+ 'info' => ((x($a->config,'info')) ? $a->config['info'] : '')
+ );
+
+ echo json_encode($data);
+ killme();
+ }
+}
+
+
+
+function friendica_content(&$a) {
+
+ $o = '';
+ $o .= '<h3>Friendica</h3>';
+
+
+ $o .= '<p></p><p>';
+
+ $o .= t('This is Friendica, version') . ' ' . FRIENDIKA_VERSION . ' ';
+ $o .= t('running at web location') . ' ' . z_root() . '</p><p>';
+
+ $o .= t('Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendica 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 Friendica - 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');
+
+ call_hooks('about_hook', $o);
+
+ return $o;
+
+}