X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffriendika.php;h=1f3df565d693b1ccabc3376cf8f6aac3f7d0d384;hb=a9ec56ace1756726517650d96192df5320f445fe;hp=f07164f2cbe1fc91117306fd73f877b7c77b0372;hpb=564f9c924ad07f94c24f8e9ebadc827d043da8d1;p=friendica.git diff --git a/mod/friendika.php b/mod/friendika.php index f07164f2cb..1f3df565d6 100644 --- a/mod/friendika.php +++ b/mod/friendika.php @@ -1,65 +1,11 @@ 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(); - } - - $o = ''; - $o .= '

Friendika

'; - +require_once('mod/friendica.php'); - $o .= '

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

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

'; - - $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'); - - return $o; +function friendika_init(&$a) { + friendica_init($a); +} +function friendika_content(&$a) { + return friendica_content($a); }