Restrict access to GenericTable, Pagination class members.

This commit is contained in:
2021-02-17 20:08:22 +01:00
parent 681af07985
commit af73f00701
2 changed files with 19 additions and 23 deletions

View File

@@ -8,18 +8,14 @@
class GenericTable
{
protected $header = [];
protected $body = [];
protected $pageIndex = null;
protected $currentPage = 1;
private $header = [];
private $body = [];
private $pageIndex = null;
private $currentPage = 1;
protected $title;
protected $title_class;
protected $tableIsSortable = false;
protected $recordCount;
protected $needsPageIndex = false;
protected $current_page;
protected $num_pages;
private $title;
private $title_class;
private $tableIsSortable = false;
public $form_above;
public $form_below;