From 30ee2ab542723c0bf4ac40d13a91300590145dfb Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 7 Oct 2014 20:15:56 +0200 Subject: [PATCH] statistics.json: it now contains the connectors as well. --- statistics_json/statistics_json.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/statistics_json/statistics_json.php b/statistics_json/statistics_json.php index 494904ba..09e7f07b 100644 --- a/statistics_json/statistics_json.php +++ b/statistics_json/statistics_json.php @@ -18,6 +18,11 @@ function statistics_json_uninstall() { function statistics_json_module() {} +function statistics_json_plugin_enabled($plugin) { + $r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = '%s'", $plugin); + return((bool)(count($r) > 0)); +} + function statistics_json_init() { global $a; @@ -32,6 +37,18 @@ function statistics_json_init() { "local_posts" => get_config('statistics_json','local_posts') ); + $statistics["facebook"] = statistics_json_plugin_enabled("fbpost"); + $statistics["twitter"] = statistics_json_plugin_enabled("twitter"); + $statistics["tumblr"] = statistics_json_plugin_enabled("tumblr"); + $statistics["wordpress"] = statistics_json_plugin_enabled("wppost"); + $statistics["appnet"] = statistics_json_plugin_enabled("appnet"); + $statistics["blogger"] = statistics_json_plugin_enabled("blogger"); + $statistics["buffer"] = statistics_json_plugin_enabled("buffer"); + $statistics["googleplus"] = statistics_json_plugin_enabled("gpluspost"); + $statistics["libertree"] = statistics_json_plugin_enabled("libertree"); + $statistics["pumpio"] = statistics_json_plugin_enabled("pumpio"); + $statistics["gnusocial"] = statistics_json_plugin_enabled("statusnet"); + header("Content-Type: application/json"); echo json_encode($statistics); logger("statistics_init: printed ".print_r($statistics, true));