aboutsummaryrefslogtreecommitdiffstats
path: root/mod/friendica.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-16 14:12:01 -0800
committerfriendica <info@friendica.com>2012-11-16 14:12:01 -0800
commita7f08173640326a97ae798dd1f6c96c1c8d26376 (patch)
tree192d5cbe19d453c2bd469cdceaa20711da783f0e /mod/friendica.php
parenteb77ac9efc40ea323442b6b0a59ff544fdbd7e2f (diff)
downloadvolse-hubzilla-a7f08173640326a97ae798dd1f6c96c1c8d26376.tar.gz
volse-hubzilla-a7f08173640326a97ae798dd1f6c96c1c8d26376.tar.bz2
volse-hubzilla-a7f08173640326a97ae798dd1f6c96c1c8d26376.zip
site/friendica is now site/siteinfo
Diffstat (limited to 'mod/friendica.php')
-rw-r--r--mod/friendica.php94
1 files changed, 0 insertions, 94 deletions
diff --git a/mod/friendica.php b/mod/friendica.php
deleted file mode 100644
index 276e1c7f5..000000000
--- a/mod/friendica.php
+++ /dev/null
@@ -1,94 +0,0 @@
-<?php
-
-function friendica_init(&$a) {
- if ($a->argv[1]=="json"){
- $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
-
- $sql_extra = '';
- if(x($a->config,'admin_nickname')) {
- $sql_extra = sprintf(" AND nickname = '%s' ",dbesc($a->config['admin_nickname']));
- }
- if (isset($a->config['admin_email']) && $a->config['admin_email']!=''){
- $r = q("SELECT username, nickname FROM user WHERE email='%s' $sql_extra", dbesc($a->config['admin_email']));
- $admin = array(
- 'name' => $r[0]['username'],
- 'profile'=> $a->get_baseurl().'/channel/'.$r[0]['nickname'],
- );
- } else {
- $admin = false;
- }
-
- $visible_plugins = array();
- if(is_array($a->plugins) && count($a->plugins)) {
- $r = q("select * from addon where hidden = 0");
- if(count($r))
- foreach($r as $rr)
- $visible_plugins[] = $rr['name'];
- }
-
- $data = Array(
- 'version' => FRIENDICA_VERSION,
- 'url' => z_root(),
- 'plugins' => $visible_plugins,
- 'register_policy' => $register_policy[$a->config['register_policy']],
- 'admin' => $admin,
- 'site_name' => $a->config['sitename'],
- 'platform' => FRIENDICA_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') . ' ' . FRIENDICA_VERSION . ' ';
- $o .= t('running at web location') . ' ' . z_root() . '</p><p>';
-
- $o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica project.') . '</p><p>';
-
- $o .= t('Bug reports and issues: please visit') . ' ' . '<a href="http://bugs.friendica.com">Bugs.Friendica.com</a></p><p>';
- $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '</p>';
-
- $o .= '<p></p>';
-
- $visible_plugins = array();
- if(is_array($a->plugins) && count($a->plugins)) {
- $r = q("select * from addon where hidden = 0");
- if(count($r))
- foreach($r as $rr)
- $visible_plugins[] = $rr['name'];
- }
-
-
- if(count($visible_plugins)) {
- $o .= '<p>' . t('Installed plugins/addons/apps:') . '</p>';
- $sorted = $visible_plugins;
- $s = '';
- sort($sorted);
- foreach($sorted as $p) {
- if(strlen($p)) {
- if(strlen($s)) $s .= ', ';
- $s .= $p;
- }
- }
- $o .= '<div style="margin-left: 25px; margin-right: 25px;">' . $s . '</div>';
- }
- else
- $o .= '<p>' . t('No installed plugins/addons/apps') . '</p>';
-
- call_hooks('about_hook', $o);
-
- return $o;
-
-}