X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffriendika.php;h=d0e709c753b3cd19ca77e053093aea1e7541bbc4;hb=2abcf76ec17a9a7754c399cdde9a4449308a4b02;hp=4a8240a11be7b05f0b2aec2016c2e7f84450f25a;hpb=1bba63fb607c2cb5fb2c002e63ad7128ecf8b1ea;p=friendica.git diff --git a/mod/friendika.php b/mod/friendika.php index 4a8240a11b..d0e709c753 100644 --- a/mod/friendika.php +++ b/mod/friendika.php @@ -1,5 +1,36 @@ 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'], + 'info' => ((x($a->config,'info')) ? $a->config['info'] : '') + ); + + echo json_encode($data); + killme(); + } +} + + + function friendika_content(&$a) { $o = ''; @@ -8,9 +39,8 @@ function friendika_content(&$a) { $o .= '

'; - $o .= 'View License' . '

'; $o .= t('This is Friendika version') . ' ' . FRIENDIKA_VERSION . ' '; - $o .= t('running at web location') . ' ' . $a->get_baseurl() . '

'; + $o .= t('running at web location') . ' ' . z_root() . '

'; $o .= t('Shared content within the Friendika network is provided under the Creative Commons Attribution 3.0 license') . '

'; @@ -31,17 +61,9 @@ function friendika_content(&$a) { } else $o .= '

' . t('No installed plugins/addons/apps'); - - return $o; - - - - - - - - + call_hooks('about_hook', $o); + return $o; -} \ No newline at end of file +}