merge
This commit is contained in:
commit
046a724272
4209 changed files with 1186656 additions and 0 deletions
30
www/analytics/core/DataTable/DataTableInterface.php
Normal file
30
www/analytics/core/DataTable/DataTableInterface.php
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://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 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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue