]> git.mxchange.org Git - friendica.git/blobdiff - mod/friendika.php
don't allow events to finish before they begin
[friendica.git] / mod / friendika.php
index 4a8240a11be7b05f0b2aec2016c2e7f84450f25a..d0e709c753b3cd19ca77e053093aea1e7541bbc4 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' => 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 .= '<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('running at web location') . ' ' . z_root() . '</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>';
 
@@ -31,17 +61,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
+}