#11739 Fixed deprecated functions 4
This commit is contained in:
parent
0d321f5311
commit
aef7f0edd0
|
@ -228,7 +228,9 @@ echo sprintf('<div id="header_table" class="header_table_%s">', $menuTypeClass);
|
|||
);
|
||||
|
||||
$autorefresh_list = json_decode(
|
||||
$select[0]['autorefresh_white_list']
|
||||
(empty($select[0]['autorefresh_white_list']) === false)
|
||||
? $select[0]['autorefresh_white_list']
|
||||
: ''
|
||||
);
|
||||
|
||||
$header_autorefresh = '';
|
||||
|
|
|
@ -2392,7 +2392,9 @@ class NetworkMap
|
|||
|
||||
unlink($filename_dot);
|
||||
|
||||
if (function_exists($this->customParser)) {
|
||||
if (empty($this->customParser) === false
|
||||
&& function_exists($this->customParser)
|
||||
) {
|
||||
try {
|
||||
if (empty($this->customParserArgs)) {
|
||||
$graph = call_user_func(
|
||||
|
|
|
@ -578,6 +578,10 @@ function html_print_select_groups(
|
|||
|
||||
if (empty($nothing) === false) {
|
||||
$fields[$nothing_value] = $nothing;
|
||||
if ($include_groups === false) {
|
||||
$include_groups = [];
|
||||
}
|
||||
|
||||
$include_groups[$nothing_value] = $nothing;
|
||||
}
|
||||
|
||||
|
|
|
@ -221,6 +221,10 @@ function io_safe_output_array(&$item, $key=false, $utf8=true)
|
|||
*/
|
||||
function io_safe_output($value, $utf8=true)
|
||||
{
|
||||
if (empty($value) === true) {
|
||||
return $value;
|
||||
}
|
||||
|
||||
if (is_numeric($value)) {
|
||||
return $value;
|
||||
}
|
||||
|
@ -235,16 +239,16 @@ function io_safe_output($value, $utf8=true)
|
|||
$value = utf8_encode($value);
|
||||
}
|
||||
|
||||
// Replace the html entitie of ( for the char
|
||||
// Replace the html entitie of ( for the char.
|
||||
$value = str_replace('(', '(', $value);
|
||||
|
||||
// Replace the html entitie of ) for the char
|
||||
// Replace the html entitie of ) for the char.
|
||||
$value = str_replace(')', ')', $value);
|
||||
|
||||
// Replace the html entitie of < for the char
|
||||
// Replace the html entitie of < for the char.
|
||||
$value = str_replace('<', '<', $value);
|
||||
|
||||
// Replace the html entitie of > for the char
|
||||
// Replace the html entitie of > for the char.
|
||||
$value = str_replace('>', '>', $value);
|
||||
|
||||
if ($utf8) {
|
||||
|
|
|
@ -884,7 +884,7 @@ function ui_print_os_icon(
|
|||
$networkmap=false,
|
||||
$only_src=false,
|
||||
$relative=false,
|
||||
$options=false,
|
||||
$options=[],
|
||||
$big_icons=false
|
||||
) {
|
||||
$subfolder = '.';
|
||||
|
|
|
@ -2286,7 +2286,12 @@ if (enterprise_installed()) {
|
|||
$map_dash_details['z_dash'] = $z_dash;
|
||||
$networkmap = db_get_row('tmap', 'id', $id);
|
||||
} else {
|
||||
$networkmap_filter = json_decode($networkmap['filter'], true);
|
||||
$networkmap_filter = json_decode(
|
||||
(empty($networkmap['filter']) === false)
|
||||
? $networkmap['filter']
|
||||
: '',
|
||||
true
|
||||
);
|
||||
if ($networkmap_filter['x_offs'] != null) {
|
||||
$map_dash_details['x_offs'] = $networkmap_filter['x_offs'];
|
||||
} else {
|
||||
|
|
|
@ -29,7 +29,7 @@ class DataSetCollection extends ArrayAccess implements JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
$rows = [];
|
||||
foreach ($this->data as $row) {
|
||||
|
|
|
@ -59,7 +59,7 @@ class Defaults implements ChartOwnedInterface, ArraySerializableInterface, JsonS
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ class LabelsCollection extends ArrayAccess implements JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
|
|
@ -326,7 +326,7 @@ class Options implements ChartOwnedInterface, ArraySerializableInterface, JsonSe
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ class Arc implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -316,7 +316,7 @@ class Line implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -281,7 +281,7 @@ class Point implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -135,7 +135,7 @@ class Rectangle implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -154,7 +154,7 @@ class Fonts implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -127,7 +127,7 @@ class Hover implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ class Layout implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -117,7 +117,7 @@ class Padding implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -209,7 +209,7 @@ class Legend implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -149,7 +149,7 @@ class Labels implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -70,7 +70,7 @@ class Plugins implements ArraySerializableInterface, JsonSerializable
|
|||
*
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -622,7 +622,7 @@ abstract class Scale implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -71,7 +71,7 @@ class Scales implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -332,7 +332,7 @@ class GridLines implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -168,7 +168,7 @@ class ScaleLabel implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -389,7 +389,7 @@ class Ticks implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -64,7 +64,7 @@ class XAxis extends Scale
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ class XAxisCollection extends ArrayAccess implements ArraySerializableInterface,
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@ class YAxisCollection extends ArrayAccess implements ArraySerializableInterface,
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -201,7 +201,7 @@ class Title implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -812,7 +812,7 @@ class Tooltips implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -319,7 +319,7 @@ class Callbacks implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -153,7 +153,7 @@ class WaterMark implements ArraySerializableInterface, JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->getArrayCopy();
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ class PluginsCollection extends ArrayAccess implements JsonSerializable
|
|||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function jsonSerialize()
|
||||
public function jsonSerialize():mixed
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue