pandorafms/pandora_console/include/class/TreeModuleGroup.class.php

53 lines
1.7 KiB
PHP
Raw Normal View History

2018-09-04 11:51:36 +02:00
<?php
// Pandora FMS- http://pandorafms.com
2018-09-04 11:51:36 +02:00
// ==================================================
2020-11-27 13:52:35 +01:00
// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas
2018-09-04 11:51:36 +02:00
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation; version 2
// 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.
global $config;
require_once $config['homedir'].'/include/class/Tree.class.php';
2018-09-04 11:51:36 +02:00
class TreeModuleGroup extends Tree
{
2018-09-04 11:51:36 +02:00
public function __construct($type, $rootType='', $id=-1, $rootID=-1, $serverID=false, $childrenMethod='on_demand', $access='AR')
{
global $config;
2018-09-04 11:51:36 +02:00
parent::__construct($type, $rootType, $id, $rootID, $serverID, $childrenMethod, $access);
2018-09-05 14:01:32 +02:00
$this->L1fieldName = 'id_module_group';
$this->L1fieldNameSql = 'tam.id_module_group';
$this->L1extraFields = [
'tmg.name',
'tmg.id_mg AS id',
];
$this->L1inner = 'INNER JOIN tmodule_group tmg ON tmg.id_mg = x2.g';
$this->L1orderByFinal = 'tmg.name';
2018-09-05 14:01:32 +02:00
$this->L2condition = 'AND tam.id_module_group = '.$this->rootID;
}
2018-09-05 14:01:32 +02:00
2018-09-04 11:51:36 +02:00
protected function getData()
{
if ($this->id == -1) {
$this->getFirstLevel();
} else if ($this->type == 'module_group') {
$this->getSecondLevel();
} else if ($this->type == 'agent') {
$this->getThirdLevel();
}
}
2018-09-04 11:51:36 +02:00
}