mirror of
https://github.com/friendica/friendica
synced 2025-04-26 19:10:11 +00:00
Update Addon functions and calls
Update function names and calls for Addon class.
This commit is contained in:
parent
213f6ae1a1
commit
11cf36105c
73 changed files with 544 additions and 464 deletions
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
use Friendica\App;
|
||||
use Friendica\Core\Addon;
|
||||
use Friendica\Core\Config;
|
||||
|
||||
require_once("include/plugin.php");
|
||||
|
@ -28,19 +29,19 @@ function statistics_json_init(App $a) {
|
|||
];
|
||||
|
||||
$statistics["services"] = [];
|
||||
$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"]["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"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue