PDF rausgenommen
This commit is contained in:
3
msd2/tracking/piwik/plugins/ExampleTheme/CHANGELOG.md
Normal file
3
msd2/tracking/piwik/plugins/ExampleTheme/CHANGELOG.md
Normal file
@ -0,0 +1,3 @@
|
||||
## Changelog
|
||||
|
||||
Here goes the changelog text.
|
27
msd2/tracking/piwik/plugins/ExampleTheme/ExampleTheme.php
Normal file
27
msd2/tracking/piwik/plugins/ExampleTheme/ExampleTheme.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
|
||||
namespace Piwik\Plugins\ExampleTheme;
|
||||
|
||||
use Piwik\Plugin;
|
||||
|
||||
class ExampleTheme extends Plugin
|
||||
{
|
||||
public function getListHooksRegistered()
|
||||
{
|
||||
return [
|
||||
'Theme.configureThemeVariables' => 'configureThemeVariables',
|
||||
];
|
||||
}
|
||||
|
||||
public function configureThemeVariables(Plugin\ThemeStyles $vars)
|
||||
{
|
||||
$vars->fontFamilyBase = 'Verdana, sans-serif';
|
||||
}
|
||||
}
|
5
msd2/tracking/piwik/plugins/ExampleTheme/README.md
Normal file
5
msd2/tracking/piwik/plugins/ExampleTheme/README.md
Normal file
@ -0,0 +1,5 @@
|
||||
# Matomo ExampleTheme Theme
|
||||
|
||||
## Description
|
||||
|
||||
Add your theme description here.
|
5
msd2/tracking/piwik/plugins/ExampleTheme/docs/faq.md
Normal file
5
msd2/tracking/piwik/plugins/ExampleTheme/docs/faq.md
Normal file
@ -0,0 +1,5 @@
|
||||
## FAQ
|
||||
|
||||
__My question?__
|
||||
|
||||
My answer
|
1
msd2/tracking/piwik/plugins/ExampleTheme/docs/index.md
Normal file
1
msd2/tracking/piwik/plugins/ExampleTheme/docs/index.md
Normal file
@ -0,0 +1 @@
|
||||
## Documentation
|
30
msd2/tracking/piwik/plugins/ExampleTheme/plugin.json
Normal file
30
msd2/tracking/piwik/plugins/ExampleTheme/plugin.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"name": "ExampleTheme",
|
||||
"description": "Matomo Platform showcase: example of how to create a simple Theme.",
|
||||
"version": "0.1.0",
|
||||
"theme": true,
|
||||
"require": {
|
||||
"piwik": ">=3.0.0-b1,<4.0.0-b1"
|
||||
},
|
||||
"stylesheet": "stylesheets/theme.less",
|
||||
"homepage": "",
|
||||
"license": "GPL v3+",
|
||||
"keywords": [],
|
||||
"support": {
|
||||
"email": "",
|
||||
"issues": "",
|
||||
"forum": "",
|
||||
"irc": "",
|
||||
"source": "",
|
||||
"docs": "",
|
||||
"wiki": "",
|
||||
"rss": ""
|
||||
},
|
||||
"authors": [
|
||||
{
|
||||
"name": "",
|
||||
"email": "",
|
||||
"homepage": ""
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
@theme-fontFamily-base: Arial, Verdana, sans-serif;
|
||||
|
||||
@theme-color-brand: #5793d4;
|
||||
@theme-color-background-base: #d9e0e3;
|
||||
@theme-color-header-background: #0091ea;
|
||||
@theme-color-header-text: #0d0d0d;
|
||||
|
||||
@theme-color-widget-title-background: #80d8ff;
|
||||
@theme-color-widget-title-text: #01579b;
|
||||
|
||||
@theme-color-menu-contrast-text: #0091ea;
|
||||
@theme-color-menu-contrast-textActive: #006064;
|
||||
@theme-color-menu-contrast-textSelected: #00838f;
|
||||
@theme-color-menu-contrast-background: #e1f5fe;
|
||||
|
||||
/*
|
||||
@theme-color-brand: #d4291f;
|
||||
@theme-color-brand-contrast: #ffffff;
|
||||
|
||||
@theme-color-widget-title-text: #0d0d0d;
|
||||
@theme-color-widget-title-background: #f2f2f2;
|
||||
|
||||
@theme-color-menu-contrast-text: #666666;
|
||||
@theme-color-menu-contrast-textActive: #0d0d0d;
|
||||
@theme-color-menu-contrast-textSelected: @theme-color-menu-contrast-text;
|
||||
@theme-color-menu-contrast-background: #f2f2f2;
|
||||
|
||||
@theme-color-text: #0d0d0d;
|
||||
@theme-color-text-light: #444444;
|
||||
@theme-color-text-lighter: #666666;
|
||||
@theme-color-link: #1e93d1;
|
||||
|
||||
@theme-color-background-base: #fff;
|
||||
@theme-color-background-tinyContrast: #f2f2f2;
|
||||
@theme-color-background-lowContrast: #cccccc;
|
||||
@theme-color-background-contrast: #5F5A60;
|
||||
@theme-color-background-highContrast: #202020;
|
||||
@theme-color-base-series: #ee3024;
|
||||
|
||||
@graph-colors-data-series1: #d4291f;
|
||||
@graph-colors-data-series2: #1f78b4;
|
||||
@graph-colors-data-series3: #ff7f00;
|
||||
@graph-colors-data-series4: #33a02c;
|
||||
@graph-colors-data-series5: #6a3d9a;
|
||||
@graph-colors-data-series6: #b15928;
|
||||
@graph-colors-data-series7: #fdbf6f;
|
||||
@graph-colors-data-series8: #cab2d6;
|
||||
*/
|
Reference in New Issue
Block a user