قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 22:47:43 +00:00

* [Coding Style] Enable rule PSR12.Files.FileHeader * Apply CS * Replace Piwik with Matomo in file headers * Unify file headers (position, no. of lines, https links) * Rebuild dist files * Apply CS * Fix system test that relies on line numbers in a file that had the file header updated --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
66 خطوط
2.0 KiB
PHP
66 خطوط
2.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
namespace Piwik\Plugins\Events;
|
|
|
|
/**
|
|
* Processing reports for Events
|
|
|
|
EVENT
|
|
- Category
|
|
- Action
|
|
- Name
|
|
- Value
|
|
|
|
METRICS (Events Overview report)
|
|
- Total number of events
|
|
- Unique events
|
|
- Visits with events
|
|
- Events/visit
|
|
- Event value
|
|
- Average event value AVG(custom_float)
|
|
|
|
MAIN REPORTS:
|
|
- Top Event Category (total events, unique events, event value, avg+min+max value)
|
|
- Top Event Action (total events, unique events, event value, avg+min+max value)
|
|
- Top Event Name (total events, unique events, event value, avg+min+max value)
|
|
|
|
COMPOSED REPORTS
|
|
- Top Category > Actions X
|
|
- Top Category > Names X
|
|
- Top Actions > Categories X
|
|
- Top Actions > Names X
|
|
- Top Names > Actions X
|
|
- Top Names > Categories X
|
|
|
|
UI
|
|
- Overview at the top (graph + Sparklines)
|
|
- Below show the left menu, defaults to Top Event Category
|
|
|
|
Not MVP:
|
|
- On hover on any row: Show % of total events
|
|
- Add min value metric, max value metric in tooltip
|
|
- List event scope Custom Variables Names > Custom variables values > Event Names > Event Actions
|
|
- List event scope Custom Variables Value > Event Category > Event Names > Event Actions
|
|
|
|
NOTES:
|
|
- For a given Name, Category is often constant
|
|
|
|
*/
|
|
class Archiver extends \Piwik\Plugin\Archiver
|
|
{
|
|
public const EVENTS_CATEGORY_ACTION_RECORD_NAME = 'Events_category_action';
|
|
public const EVENTS_CATEGORY_NAME_RECORD_NAME = 'Events_category_name';
|
|
public const EVENTS_ACTION_CATEGORY_RECORD_NAME = 'Events_action_category';
|
|
public const EVENTS_ACTION_NAME_RECORD_NAME = 'Events_action_name';
|
|
public const EVENTS_NAME_ACTION_RECORD_NAME = 'Events_name_action';
|
|
public const EVENTS_NAME_CATEGORY_RECORD_NAME = 'Events_name_category';
|
|
public const EVENT_NAME_NOT_SET = 'Piwik_EventNameNotSet';
|
|
}
|