قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 06:57:53 +00:00

* 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>
38 خطوط
1.1 KiB
PHP
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;
|
|
}
|