]> git.mxchange.org Git - friendica.git/blobdiff - mod/statistics_json.php
Merge remote-tracking branch 'origin/Nav-#3878' into Nav-#3878
[friendica.git] / mod / statistics_json.php
index 3b9e9c49667e8b396d416b47e6b1dfd6ea705b2e..21eb10ab4803cf5f849a5cda57b148a851e20161 100644 (file)
@@ -5,28 +5,29 @@
  */
 
 use Friendica\App;
+use Friendica\Core\Config;
 
 require_once("include/plugin.php");
 
 function statistics_json_init(App $a) {
 
-       if (!get_config("system", "nodeinfo")) {
+       if (!Config::get("system", "nodeinfo")) {
                http_status_exit(404);
                killme();
        }
 
-       $statistics = array(
+       $statistics = [
                "name" => $a->config["sitename"],
                "network" => FRIENDICA_PLATFORM,
                "version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION,
                "registrations_open" => ($a->config['register_policy'] != 0),
-               "total_users" => get_config('nodeinfo', 'total_users'),
-               "active_users_halfyear" => get_config('nodeinfo', 'active_users_halfyear'),
-               "active_users_monthly" => get_config('nodeinfo', 'active_users_monthly'),
-               "local_posts" => get_config('nodeinfo', 'local_posts')
-       );
+               "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"] = [];
        $statistics["services"]["appnet"] = plugin_enabled("appnet");
        $statistics["services"]["blogger"] = plugin_enabled("blogger");
        $statistics["services"]["buffer"] = plugin_enabled("buffer");