ConsoleCommand
2 months ago
Dimension
2 months ago
API.php
8 months ago
AggregatedMetric.php
2 years ago
ArchivedMetric.php
2 weeks ago
Archiver.php
2 months ago
Categories.php
2 years ago
ComponentFactory.php
2 weeks ago
ComputedMetric.php
1 year ago
ConsoleCommand.php
2 months ago
Controller.php
2 months ago
ControllerAdmin.php
2 weeks ago
Dependency.php
2 months ago
LogTablesProvider.php
2 weeks ago
Manager.php
2 weeks ago
Menu.php
2 weeks ago
MetadataLoader.php
2 weeks ago
Metric.php
2 months ago
PluginException.php
1 year ago
ProcessedMetric.php
4 months ago
ReleaseChannels.php
4 months ago
Report.php
2 months ago
ReportsProvider.php
2 years ago
RequestProcessors.php
5 months ago
Segment.php
4 months ago
SettingsProvider.php
2 weeks ago
Tasks.php
2 months ago
ThemeStyles.php
2 weeks ago
ViewDataTable.php
2 weeks ago
Visualization.php
2 weeks ago
WidgetsProvider.php
4 months ago
AggregatedMetric.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Matomo - free/libre analytics platform |
| 5 | * |
| 6 | * @link https://matomo.org |
| 7 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 8 | */ |
| 9 | namespace Piwik\Plugin; |
| 10 | |
| 11 | /** |
| 12 | * Base type for metric metadata classes that describe aggregated metrics. These metrics are |
| 13 | * computed in the backend data store and are aggregated in PHP when Piwik archives period reports. |
| 14 | * |
| 15 | * Note: This class is a placeholder. It will be filled out at a later date. Right now, only |
| 16 | * processed metrics can be defined this way. |
| 17 | */ |
| 18 | abstract class AggregatedMetric extends \Piwik\Plugin\Metric |
| 19 | { |
| 20 | // stub, to be filled out later |
| 21 | } |
| 22 |