mirror of
https://github.com/friendica/friendica
synced 2024-12-23 06:40:15 +00:00
rename
This commit is contained in:
parent
e4dd2a5a9a
commit
c00aacf9e5
3 changed files with 73 additions and 62 deletions
2
boot.php
2
boot.php
|
@ -9,7 +9,7 @@ require_once('include/nav.php');
|
||||||
require_once('include/cache.php');
|
require_once('include/cache.php');
|
||||||
|
|
||||||
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
|
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
|
||||||
define ( 'FRIENDIKA_VERSION', '2.3.1148' );
|
define ( 'FRIENDIKA_VERSION', '2.3.1150' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1099 );
|
define ( 'DB_UPDATE_VERSION', 1099 );
|
||||||
|
|
||||||
|
|
68
mod/friendica.php
Normal file
68
mod/friendica.php
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
function friendica_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'],
|
||||||
|
'platform' => FRIENDIKA_PLATFORM,
|
||||||
|
'info' => ((x($a->config,'info')) ? $a->config['info'] : '')
|
||||||
|
);
|
||||||
|
|
||||||
|
echo json_encode($data);
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function friendica_content(&$a) {
|
||||||
|
|
||||||
|
$o = '';
|
||||||
|
$o .= '<h3>Friendica</h3>';
|
||||||
|
|
||||||
|
|
||||||
|
$o .= '<p></p><p>';
|
||||||
|
|
||||||
|
$o .= t('This is Friendica, version') . ' ' . FRIENDIKA_VERSION . ' ';
|
||||||
|
$o .= t('running at web location') . ' ' . z_root() . '</p><p>';
|
||||||
|
|
||||||
|
$o .= t('Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendica project.') . '</p><p>';
|
||||||
|
|
||||||
|
$o .= t('Bug reports and issues: please visit') . ' ' . '<a href="http://bugs.friendika.com">Bugs.Friendika.com</a></p><p>';
|
||||||
|
$o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '</p>';
|
||||||
|
|
||||||
|
$o .= '<p></p>';
|
||||||
|
|
||||||
|
if(count($a->plugins)) {
|
||||||
|
$o .= '<p>' . t('Installed plugins/addons/apps') . '</p>';
|
||||||
|
$o .= '<ul>';
|
||||||
|
foreach($a->plugins as $p)
|
||||||
|
if(strlen($p))
|
||||||
|
$o .= '<li>' . $p . '</li>';
|
||||||
|
$o .= '</ul>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
$o .= '<p>' . t('No installed plugins/addons/apps');
|
||||||
|
|
||||||
|
call_hooks('about_hook', $o);
|
||||||
|
|
||||||
|
return $o;
|
||||||
|
|
||||||
|
}
|
|
@ -1,68 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
require_once('mod/friendica.php');
|
||||||
|
|
||||||
function friendika_init(&$a) {
|
function friendika_init(&$a) {
|
||||||
if ($a->argv[1]=="json"){
|
friendica_init($a);
|
||||||
$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 friendika_content(&$a) {
|
function friendika_content(&$a) {
|
||||||
|
return friendica_content($a);
|
||||||
$o = '';
|
|
||||||
$o .= '<h3>Friendika</h3>';
|
|
||||||
|
|
||||||
|
|
||||||
$o .= '<p></p><p>';
|
|
||||||
|
|
||||||
$o .= t('This is Friendika version') . ' ' . FRIENDIKA_VERSION . ' ';
|
|
||||||
$o .= t('running at web location') . ' ' . z_root() . '</p><p>';
|
|
||||||
|
|
||||||
$o .= t('Please visit <a href="http://project.friendika.com">Project.Friendika.com</a> to learn more about the Friendika project.') . '</p><p>';
|
|
||||||
|
|
||||||
$o .= t('Bug reports and issues: please visit') . ' ' . '<a href="http://bugs.friendika.com">Bugs.Friendika.com</a></p><p>';
|
|
||||||
$o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com') . '</p>';
|
|
||||||
|
|
||||||
$o .= '<p></p>';
|
|
||||||
|
|
||||||
if(count($a->plugins)) {
|
|
||||||
$o .= '<p>' . t('Installed plugins/addons/apps') . '</p>';
|
|
||||||
$o .= '<ul>';
|
|
||||||
foreach($a->plugins as $p)
|
|
||||||
if(strlen($p))
|
|
||||||
$o .= '<li>' . $p . '</li>';
|
|
||||||
$o .= '</ul>';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
$o .= '<p>' . t('No installed plugins/addons/apps');
|
|
||||||
|
|
||||||
call_hooks('about_hook', $o);
|
|
||||||
|
|
||||||
return $o;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue