X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=piwik%2Fpiwik.php;h=3ec08bfaae8505a2a15821a6df9c17ed99a37a8a;hb=1ce63185abc24a0813c2045c43ec1e3fede6e113;hp=1487f370e363d0dd89b3ee7dfd98370725a3f031;hpb=c8a63f6b9c709d558add1fcb3d90447a918185c4;p=friendica-addons.git diff --git a/piwik/piwik.php b/piwik/piwik.php index 1487f370..3ec08bfa 100644 --- a/piwik/piwik.php +++ b/piwik/piwik.php @@ -33,10 +33,10 @@ use Friendica\Core\Config; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Core\Logger; use Friendica\Core\Renderer; -use Friendica\Util\Config\ConfigFileLoader; +use Friendica\DI; +use Friendica\Util\ConfigFileLoader; use Friendica\Util\Strings; function piwik_install() { @@ -65,15 +65,15 @@ function piwik_analytics($a,&$b) { * associated CSS file. We just have to tell Friendica to get it * into the page header. */ - $a->page['htmlhead'] .= ''; + DI::page()['htmlhead'] .= ''; /* * Get the configuration variables from the config/addon.config.php file. */ - $baseurl = Config::get('piwik', 'baseurl'); - $siteid = Config::get('piwik', 'siteid'); - $optout = Config::get('piwik', 'optout'); - $async = Config::get('piwik', 'async'); + $baseurl = DI::config()->get('piwik', 'baseurl'); + $siteid = DI::config()->get('piwik', 'siteid'); + $optout = DI::config()->get('piwik', 'optout'); + $async = DI::config()->get('piwik', 'async'); /* * Add the Piwik tracking code for the site. @@ -92,21 +92,21 @@ function piwik_analytics($a,&$b) { */ if ($optout) { $b .= ""; } } function piwik_addon_admin (&$a, &$o) { $t = Renderer::getMarkupTemplate( "admin.tpl", "addon/piwik/" ); $o = Renderer::replaceMacros( $t, [ - '$submit' => L10n::t('Save Settings'), - '$piwikbaseurl' => ['baseurl', L10n::t('Matomo (Piwik) Base URL'), Config::get('piwik','baseurl' ), L10n::t('Absolute path to your Matomo (Piwik) installation. (without protocol (http/s), with trailing slash)')], - '$siteid' => ['siteid', L10n::t('Site ID'), Config::get('piwik','siteid' ), ''], - '$optout' => ['optout', L10n::t('Show opt-out cookie link?'), Config::get('piwik','optout' ), ''], - '$async' => ['async', L10n::t('Asynchronous tracking'), Config::get('piwik','async' ), ''], + '$submit' => DI::l10n()->t('Save Settings'), + '$piwikbaseurl' => ['baseurl', DI::l10n()->t('Matomo (Piwik) Base URL'), DI::config()->get('piwik','baseurl' ), DI::l10n()->t('Absolute path to your Matomo (Piwik) installation. (without protocol (http/s), with trailing slash)')], + '$siteid' => ['siteid', DI::l10n()->t('Site ID'), DI::config()->get('piwik','siteid' ), ''], + '$optout' => ['optout', DI::l10n()->t('Show opt-out cookie link?'), DI::config()->get('piwik','optout' ), ''], + '$async' => ['async', DI::l10n()->t('Asynchronous tracking'), DI::config()->get('piwik','async' ), ''], ]); } function piwik_addon_admin_post (&$a) { @@ -118,5 +118,5 @@ function piwik_addon_admin_post (&$a) { Config::set('piwik', 'siteid', $id); Config::set('piwik', 'optout', $optout); Config::set('piwik', 'async', $async); - info(L10n::t('Settings updated.'). EOL); + info(DI::l10n()->t('Settings updated.'). EOL); }