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 = ''; $o .= '

Friendika

'; $o .= '

'; $o .= t('This is Friendika version') . ' ' . FRIENDIKA_VERSION . ' '; $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') . '

'; $o .= t('Please visit Project.Friendika.com to learn more about the Friendika project.') . '

'; $o .= t('Bug reports and issues: please visit') . ' ' . 'Bugs.Friendika.com

'; $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com') . '

'; $o .= '

'; if(count($a->plugins)) { $o .= '

' . t('Installed plugins/addons/apps') . '

'; $o .= ''; } else $o .= '

' . t('No installed plugins/addons/apps'); call_hooks('about_hook', $o); return $o; }