X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fstatistics_json.php;h=0dbe0ea492c6930b47f9adacb68edbc633ad6305;hb=adacf421a66228948f8805d2310efdf01b5ceb93;hp=9b2263da778de9e027f7089fa053918d95eb08d2;hpb=acb4630eed14175ef35f09e21609d6329f3f990c;p=friendica.git diff --git a/mod/statistics_json.php b/mod/statistics_json.php index 9b2263da77..0dbe0ea492 100644 --- a/mod/statistics_json.php +++ b/mod/statistics_json.php @@ -5,42 +5,42 @@ */ use Friendica\App; +use Friendica\Core\Addon; use Friendica\Core\Config; - -require_once("include/plugin.php"); +use Friendica\Core\System; function statistics_json_init(App $a) { if (!Config::get("system", "nodeinfo")) { - http_status_exit(404); + System::httpExit(404); killme(); } - $statistics = array( - "name" => $a->config["sitename"], + $statistics = [ + "name" => Config::get('config', 'sitename'), "network" => FRIENDICA_PLATFORM, "version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION, - "registrations_open" => ($a->config['register_policy'] != 0), + "registrations_open" => Config::get('config', 'register_policy') !== REGISTER_CLOSED, "total_users" => Config::get('nodeinfo', 'total_users'), "active_users_halfyear" => Config::get('nodeinfo', 'active_users_halfyear'), "active_users_monthly" => Config::get('nodeinfo', 'active_users_monthly'), "local_posts" => Config::get('nodeinfo', 'local_posts') - ); - - $statistics["services"] = array(); - $statistics["services"]["appnet"] = plugin_enabled("appnet"); - $statistics["services"]["blogger"] = plugin_enabled("blogger"); - $statistics["services"]["buffer"] = plugin_enabled("buffer"); - $statistics["services"]["dreamwidth"] = plugin_enabled("dwpost"); - $statistics["services"]["facebook"] = plugin_enabled("fbpost"); - $statistics["services"]["gnusocial"] = plugin_enabled("statusnet"); - $statistics["services"]["googleplus"] = plugin_enabled("gpluspost"); - $statistics["services"]["libertree"] = plugin_enabled("libertree"); - $statistics["services"]["livejournal"] = plugin_enabled("ljpost"); - $statistics["services"]["pumpio"] = plugin_enabled("pumpio"); - $statistics["services"]["twitter"] = plugin_enabled("twitter"); - $statistics["services"]["tumblr"] = plugin_enabled("tumblr"); - $statistics["services"]["wordpress"] = plugin_enabled("wppost"); + ]; + + $statistics["services"] = []; + $statistics["services"]["appnet"] = Addon::isEnabled("appnet"); + $statistics["services"]["blogger"] = Addon::isEnabled("blogger"); + $statistics["services"]["buffer"] = Addon::isEnabled("buffer"); + $statistics["services"]["dreamwidth"] = Addon::isEnabled("dwpost"); + $statistics["services"]["facebook"] = Addon::isEnabled("fbpost"); + $statistics["services"]["gnusocial"] = Addon::isEnabled("statusnet"); + $statistics["services"]["googleplus"] = Addon::isEnabled("gpluspost"); + $statistics["services"]["libertree"] = Addon::isEnabled("libertree"); + $statistics["services"]["livejournal"] = Addon::isEnabled("ljpost"); + $statistics["services"]["pumpio"] = Addon::isEnabled("pumpio"); + $statistics["services"]["twitter"] = Addon::isEnabled("twitter"); + $statistics["services"]["tumblr"] = Addon::isEnabled("tumblr"); + $statistics["services"]["wordpress"] = Addon::isEnabled("wppost"); $statistics["appnet"] = $statistics["services"]["appnet"]; $statistics["blogger"] = $statistics["services"]["blogger"];