]> git.mxchange.org Git - friendica.git/blobdiff - mod/friendika.php
use local 'match people with my interests' if global directory is not configured
[friendica.git] / mod / friendika.php
index 4a8240a11be7b05f0b2aec2016c2e7f84450f25a..7762bfbb52ef7f1d3d57b286327b115057d349e2 100644 (file)
@@ -1,5 +1,36 @@
 <?php
 
+function friendika_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' => $a->get_baseurl(),
+                       'plugins' => $a->plugins,
+                       'register_policy' =>  $register_policy[$a->config['register_policy']],
+                       'admin' => $admin,
+                       'site_name' => $a->config['sitename'],
+                       
+               );
+
+               echo json_encode($data);
+               killme();
+       }
+}
+
+
+
 function friendika_content(&$a) {
 
        $o = '';
@@ -31,17 +62,9 @@ function friendika_content(&$a) {
        }
        else
                $o .= '<p>' . t('No installed plugins/addons/apps');
-       
-       return $o;
-
-
-
-
-
-
-
-
 
+       call_hooks('about_hook', $o);   
 
+       return $o;
 
-}
\ No newline at end of file
+}