From c00aacf9e58cbba11fc912a615a0c272f90bd885 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 30 Oct 2011 15:12:07 -0700 Subject: [PATCH] rename --- boot.php | 2 +- mod/friendica.php | 68 +++++++++++++++++++++++++++++++++++++++++++++++ mod/friendika.php | 65 +++----------------------------------------- 3 files changed, 73 insertions(+), 62 deletions(-) create mode 100644 mod/friendica.php diff --git a/boot.php b/boot.php index d2557e1148..85aca95be1 100644 --- a/boot.php +++ b/boot.php @@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDIKA_PLATFORM', 'Free Friendika'); -define ( 'FRIENDIKA_VERSION', '2.3.1148' ); +define ( 'FRIENDIKA_VERSION', '2.3.1150' ); define ( 'DFRN_PROTOCOL_VERSION', '2.21' ); define ( 'DB_UPDATE_VERSION', 1099 ); diff --git a/mod/friendica.php b/mod/friendica.php new file mode 100644 index 0000000000..363f1409f1 --- /dev/null +++ b/mod/friendica.php @@ -0,0 +1,68 @@ +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'], + 'platform' => FRIENDIKA_PLATFORM, + 'info' => ((x($a->config,'info')) ? $a->config['info'] : '') + ); + + echo json_encode($data); + killme(); + } +} + + + +function friendica_content(&$a) { + + $o = ''; + $o .= '

Friendica

'; + + + $o .= '

'; + + $o .= t('This is Friendica, version') . ' ' . FRIENDIKA_VERSION . ' '; + $o .= t('running at web location') . ' ' . z_root() . '

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

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

'; + $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - 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; + +} diff --git a/mod/friendika.php b/mod/friendika.php index b12110bd54..1f3df565d6 100644 --- a/mod/friendika.php +++ b/mod/friendika.php @@ -1,68 +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' => z_root(), - 'plugins' => $a->plugins, - 'register_policy' => $register_policy[$a->config['register_policy']], - 'admin' => $admin, - 'site_name' => $a->config['sitename'], - 'platform' => FRIENDIKA_PLATFORM, - 'info' => ((x($a->config,'info')) ? $a->config['info'] : '') - ); - - echo json_encode($data); - killme(); - } + friendica_init($a); } - - 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('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; - + return friendica_content($a); }