Source
'dashboard' => 'SELECT private, templateid, display_period, auto_start, uuid FROM dashboard WHERE dashboardid='.$ids['dashboardid'],
<?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.
**/
require_once dirname(__FILE__).'/../../include/CWebTest.php';
require_once dirname(__FILE__).'/../traits/TableTrait.php';
/**
* @backup dashboard, profiles
*
* @onBefore prepareDashboardData
*
* @dataSource LoginUsers
*/
class testDashboardForm extends CWebTest {
use TableTrait;
/**
* Dashboard ids grouped by name.
*
* @var array
*/
protected static $ids;
/**
* Get all dashboard related tables hash values.
*/
public static function getHash() {
return [
'dashboard' => CDBHelper::getHash('SELECT * FROM dashboard'),
'dashboard_user' => CDBHelper::getHash('SELECT * FROM dashboard_user ORDER by dashboard_userid'),
'dashboard_usrgrp' => CDBHelper::getHash('SELECT * FROM dashboard_usrgrp ORDER by dashboard_usrgrpid'),
'dashboard_page' => CDBHelper::getHash('SELECT * FROM dashboard_page ORDER by dashboard_pageid'),
'widget' => CDBHelper::getHash('SELECT * FROM widget ORDER by widgetid')
];
}
/**
* Default values of dashboard properties.
*/
private $default_values = [
'Owner' => 'Admin (Zabbix Administrator)',
'Name' => 'New dashboard',
'Default page display period' => '30 seconds',
'Start slideshow automatically' => true
];