Update infrastructure names and details

This commit is contained in:
g 2020-09-13 19:49:36 +02:00
commit 8e1f41f211
10 changed files with 25 additions and 85 deletions

27
GTheme.php Normal file
View 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\GTheme;
use Piwik\Plugin;
class GTheme extends Plugin
{
public function getListHooksRegistered()
{
return [
'Theme.configureThemeVariables' => 'configureThemeVariables',
];
}
public function configureThemeVariables(Plugin\ThemeStyles $vars)
{
//Nothing here
}
}