#11739 Fixed deprecated functions 3
This commit is contained in:
parent
9f36729d30
commit
0d321f5311
|
@ -931,7 +931,7 @@ foreach ($fields as $field) {
|
||||||
// Filling the data.
|
// Filling the data.
|
||||||
$combo = [];
|
$combo = [];
|
||||||
$combo = $field['combo_values'];
|
$combo = $field['combo_values'];
|
||||||
$combo = explode(',', $combo);
|
$combo = explode(',', (empty($combo) === true) ? [] : $combo);
|
||||||
$combo_values = [];
|
$combo_values = [];
|
||||||
foreach ($combo as $value) {
|
foreach ($combo as $value) {
|
||||||
$combo_values[$value] = $value;
|
$combo_values[$value] = $value;
|
||||||
|
|
|
@ -1003,6 +1003,10 @@ function grafico_modulo_sparse($params)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($data_module_graph === false) {
|
||||||
|
$data_module_graph = [];
|
||||||
|
}
|
||||||
|
|
||||||
$data_module_graph['series_suffix'] = $series_suffix;
|
$data_module_graph['series_suffix'] = $series_suffix;
|
||||||
|
|
||||||
// Check available data.
|
// Check available data.
|
||||||
|
|
|
@ -353,11 +353,7 @@ class ClusterManager
|
||||||
*/
|
*/
|
||||||
public function getCount()
|
public function getCount()
|
||||||
{
|
{
|
||||||
if (isset($this->count) !== true) {
|
return $this->getAll('count');
|
||||||
$this->count = $this->getAll('count');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->count;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -496,7 +496,7 @@ class Client
|
||||||
throw new \Exception('Please provide homedir path to use UMC');
|
throw new \Exception('Please provide homedir path to use UMC');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_dir($this->remoteConfig) === true
|
if (empty($this->remoteConfig) === false && is_dir($this->remoteConfig) === true
|
||||||
&& is_dir($this->remoteConfig.'/updates') === false
|
&& is_dir($this->remoteConfig.'/updates') === false
|
||||||
) {
|
) {
|
||||||
mkdir($this->remoteConfig.'/updates/');
|
mkdir($this->remoteConfig.'/updates/');
|
||||||
|
|
|
@ -23,6 +23,8 @@ class Defaults implements ChartOwnedInterface, ArraySerializableInterface, JsonS
|
||||||
*/
|
*/
|
||||||
private $font;
|
private $font;
|
||||||
|
|
||||||
|
protected $watermark;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return Font.
|
* Return Font.
|
||||||
|
|
|
@ -14,6 +14,12 @@ class Plugins implements ArraySerializableInterface, JsonSerializable
|
||||||
{
|
{
|
||||||
use ArraySerializable;
|
use ArraySerializable;
|
||||||
|
|
||||||
|
protected $legend;
|
||||||
|
|
||||||
|
protected $title;
|
||||||
|
|
||||||
|
protected $datalabels;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return Legend.
|
* Return Legend.
|
||||||
|
|
Loading…
Reference in New Issue