mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
N°5388 - PHP 8.2: Fix dynamic properties
This commit is contained in:
@@ -48,6 +48,10 @@ class DataTable extends UIContentBlock
|
||||
protected $aAjaxData;
|
||||
protected $aDisplayColumns;
|
||||
protected $aResultColumns;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $sJsonData;
|
||||
/*
|
||||
* array of data to display the first page
|
||||
*/
|
||||
|
||||
@@ -12,12 +12,35 @@ use Dict;
|
||||
use Metamodel;
|
||||
use Serializable;
|
||||
|
||||
/**
|
||||
* Class DataTableSettings
|
||||
*
|
||||
* @author Anne-Catherine Cognet <anne-catherine.cognet@combodo.com>
|
||||
* @package Combodo\iTop\Application\UI\Base\Component\DataTable
|
||||
* @since 3.0.0
|
||||
*/
|
||||
class DataTableSettings
|
||||
{
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $aClassAliases;
|
||||
/**
|
||||
* @var null|string
|
||||
*/
|
||||
public $sTableId;
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
public $iDefaultPageSize;
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $aColumns;
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $aSortOrder;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user