update: Widgets and menu styling
This commit is contained in:
parent
cefa1cf391
commit
94444594ab
20 changed files with 230 additions and 71 deletions
27
GoogleAnalyticsTheme.php
Normal file
27
GoogleAnalyticsTheme.php
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<?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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue