1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/core/DataTable/DataTableInterface.php
Stefan Giehl d4d46a7b5d Ensure to store metrics with zero value (#23412)
* Ensure to store metrics with zero value

otherwise requested metrics might be missing in partial archives and new ones would be built

* update tests

* pass empty data collection information

* update expected test results

* Ensure to always use an created archive, even when there were no visits

* update expected test files

* clean up code

* submodule update

---------

Co-authored-by: Marc Neudert <marc@innocraft.com>
2025-08-01 21:36:02 +02:00

38 خطوط
1.1 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\DataTable;
/**
* The DataTable Interface
*
*/
interface DataTableInterface
{
public function getRowsCount();
public function queueFilter($className, $parameters = array());
public function applyQueuedFilters();
public function filter($className, $parameters = array());
public function multiFilter($otherTables, $filter);
public function getFirstRow();
public function __toString();
public function enableRecursiveSort();
public function renameColumn($oldName, $newName);
public function deleteColumns($columns, $deleteRecursiveInSubtables = false);
public function deleteRow($id);
public function deleteColumn($name);
public function getColumn($name);
public function getColumns();
public function deleteRowsMetadata($name, $deleteRecursiveInSubtables = false);
public function setAsBuiltWithoutArchives(bool $flag): void;
public function wasBuiltWithoutArchives(): bool;
}