theming/GoogleAnalyticsTheme.php
2020-01-17 17:25:07 +01:00

27 lines
536 B
PHP

<?php
/**
* Piwik - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\GoogleAnalyticsTheme;
use Piwik\Plugin;
class GoogleAnalyticsTheme extends Plugin
{
public function getListHooksRegistered()
{
return [
'Theme.configureThemeVariables' => 'configureThemeVariables',
];
}
public function configureThemeVariables(Plugin\ThemeStyles $vars)
{
//Nothing here
}
}