Table
miTable implements the table functionality. The various features of the table like sorting, paging, filtering are implemented as separate classes. Each of these features can be added to the table.
Usually the miDataManager is responsible for adding the sorter, the pager, the filter and messenger features.
Example for creating table and adding features:
<?php
$table = new miTable();
new miTableSorter($table);
new miTableMessage($table);
?>
The following table features are included in MIPHPF:
miTableFilters - implements filtering (searching)
miTableCustomParams - implements passing of query (GET) params around
miTableMessage - implements displaying of message
miTablePager - implements paging
miTableSorter - implements sorting