forked from Public/pics
Restrict access to GenericTable, Pagination class members.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user