Source
xxxxxxxxxx
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* Dashboard Map widget class. Creates all widget specific JavaScript and HTML content for map widget's view.
*/
class CDashboardWidgetMap extends CDiv {
/**
* Reference of linked map navigation tree widget.
*
* @var string
*/
private $filter_widget_reference;
/**
* Map that will be linked to 'go back to [previous map name]' link in dashboard map widget.
*
* @var array|null - array must contain at least integer value 'sysmapid' and string 'name'.
*/
private $previous_map;
/**
* Response array of CMapHelper::get() that represents currently opened map.
*
* @var array|null
*/
private $sysmap_data;
/**
* Requested sysmapid.
*
* @var int
*/
private $current_sysmapid;
/**
* The type of source of map widget.
*
* @var int - allowed values are WIDGET_SYSMAP_SOURCETYPE_MAP and WIDGET_SYSMAP_SOURCETYPE_FILTER.
*/
private $source_type;
/**
* Represents either this is initial or repeated load of map widget.