update: Class Name
This commit is contained in:
parent
7e6e4352f8
commit
ffdba42616
3 changed files with 4 additions and 4 deletions
27
GoogleTheme.php
Normal file
27
GoogleTheme.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\GoogleTheme;
|
||||
|
||||
use Piwik\Plugin;
|
||||
|
||||
class GoogleTheme 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