Restrict access to GenericTable, Pagination class members.
This commit is contained in:
@@ -8,19 +8,19 @@
|
||||
|
||||
class PageIndex
|
||||
{
|
||||
protected $base_url;
|
||||
protected $current_page = 1;
|
||||
protected $index_class = 'pagination';
|
||||
protected $items_per_page = 0;
|
||||
private $base_url;
|
||||
private $current_page = 1;
|
||||
private $index_class = 'pagination';
|
||||
private $items_per_page = 0;
|
||||
private $linkBuilder;
|
||||
protected $needsPageIndex = false;
|
||||
protected $num_pages = 1;
|
||||
protected $page_index = [];
|
||||
protected $page_slug = '%AMP%page=%PAGE%';
|
||||
protected $recordCount = 0;
|
||||
protected $sort_direction = null;
|
||||
protected $sort_order = null;
|
||||
protected $start = 0;
|
||||
private $needsPageIndex = false;
|
||||
private $num_pages = 1;
|
||||
private $page_index = [];
|
||||
private $page_slug = '%AMP%page=%PAGE%';
|
||||
private $recordCount = 0;
|
||||
private $sort_direction = null;
|
||||
private $sort_order = null;
|
||||
private $start = 0;
|
||||
|
||||
public function __construct($options)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user