Filter
6 years ago
Renderer
6 years ago
Row
6 years ago
BaseFilter.php
6 years ago
Bridges.php
6 years ago
DataTableInterface.php
6 years ago
Manager.php
6 years ago
Map.php
6 years ago
Renderer.php
6 years ago
Row.php
6 years ago
Simple.php
6 years ago
TableNotFoundException.php
6 years ago
DataTableInterface.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Piwik - free/libre analytics platform |
| 4 | * |
| 5 | * @link https://matomo.org |
| 6 | * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later |
| 7 | * |
| 8 | */ |
| 9 | namespace Piwik\DataTable; |
| 10 | |
| 11 | /** |
| 12 | * The DataTable Interface |
| 13 | * |
| 14 | */ |
| 15 | interface DataTableInterface |
| 16 | { |
| 17 | public function getRowsCount(); |
| 18 | public function queueFilter($className, $parameters = array()); |
| 19 | public function applyQueuedFilters(); |
| 20 | public function filter($className, $parameters = array()); |
| 21 | public function getFirstRow(); |
| 22 | public function __toString(); |
| 23 | public function enableRecursiveSort(); |
| 24 | public function renameColumn($oldName, $newName); |
| 25 | public function deleteColumns($columns, $deleteRecursiveInSubtables = false); |
| 26 | public function deleteRow($id); |
| 27 | public function deleteColumn($name); |
| 28 | public function getColumn($name); |
| 29 | public function getColumns(); |
| 30 | } |
| 31 |