streams/mod/siteinfo.php

99 lines
2.8 KiB
PHP
Raw Normal View History

2011-10-30 22:12:07 +00:00
<?php
2012-11-16 22:13:03 +00:00
function siteinfo_init(&$a) {
2012-11-16 22:12:01 +00:00
2011-10-30 22:12:07 +00:00
if ($a->argv[1]=="json"){
$register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
$sql_extra = '';
if(x($a->config,'admin_nickname')) {
$sql_extra = sprintf(" AND nickname = '%s' ",dbesc($a->config['admin_nickname']));
}
2011-10-30 22:12:07 +00:00
if (isset($a->config['admin_email']) && $a->config['admin_email']!=''){
$r = q("SELECT username, nickname FROM user WHERE email='%s' $sql_extra", dbesc($a->config['admin_email']));
2011-10-30 22:12:07 +00:00
$admin = array(
'name' => $r[0]['username'],
'profile'=> $a->get_baseurl().'/channel/'.$r[0]['nickname'],
2011-10-30 22:12:07 +00:00
);
} else {
$admin = false;
}
$visible_plugins = array();
if(is_array($a->plugins) && count($a->plugins)) {
$r = q("select * from addon where hidden = 0");
if(count($r))
foreach($r as $rr)
$visible_plugins[] = $rr['name'];
}
2011-10-30 22:12:07 +00:00
$data = Array(
2013-04-15 05:24:47 +00:00
'version' => RED_VERSION,
2011-10-30 22:12:07 +00:00
'url' => z_root(),
'plugins' => $visible_plugins,
2013-01-03 21:50:23 +00:00
'register_policy' => $register_policy[$a->config['system']['register_policy']],
2011-10-30 22:12:07 +00:00
'admin' => $admin,
'site_name' => $a->config['sitename'],
2013-04-15 05:24:47 +00:00
'platform' => RED_PLATFORM,
2011-10-30 22:12:07 +00:00
'info' => ((x($a->config,'info')) ? $a->config['info'] : '')
);
echo json_encode($data);
killme();
}
}
2012-11-16 22:12:01 +00:00
function siteinfo_content(&$a) {
if(! get_config('system','hidden_version_siteinfo'))
2013-04-15 05:24:47 +00:00
$version = sprintf( t('Version %s'), RED_VERSION );
2013-02-21 02:56:59 +00:00
else
$version = "";
2011-10-30 22:12:07 +00:00
$visible_plugins = array();
if(is_array($a->plugins) && count($a->plugins)) {
$r = q("select * from addon where hidden = 0");
if(count($r))
foreach($r as $rr)
$visible_plugins[] = $rr['name'];
}
2013-02-21 02:56:59 +00:00
$plugins_list = '';
if(count($visible_plugins)) {
2013-02-21 02:56:59 +00:00
$plugins_text = t('Installed plugins/addons/apps:');
$sorted = $visible_plugins;
$s = '';
sort($sorted);
foreach($sorted as $p) {
if(strlen($p)) {
if(strlen($s)) $s .= ', ';
$s .= $p;
}
}
2013-02-21 02:56:59 +00:00
$plugins_list .= $s;
2011-10-30 22:12:07 +00:00
}
else
2013-02-21 02:56:59 +00:00
$plugins_text = t('No installed plugins/addons/apps');
$o = replace_macros(get_markup_template('siteinfo.tpl'), array(
'$title' => t('Red'),
'$description' => t('This is Red - another decentralized, distributed communications project by the folks at Friendica.'),
'$version' => $version,
'$web_location' => t('Running at web location') . ' ' . z_root(),
'$visit' => t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica and/or Red project.'),
'$bug_text' => t('Bug reports and issues: please visit'),
'$bug_link_url' => 'http://bugs.friendica.com',
'$bug_link_text' => 'Bugs.Friendica.com',
'$contact' => t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com'),
'$plugins_text' => $plugins_text,
'$plugins_list' => $plugins_list
));
2011-10-30 22:12:07 +00:00
call_hooks('about_hook', $o);
return $o;
}