0) { $return['return'] = true; $return['tables'][] = __('Agents'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM talert_actions WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM talert_actions WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Alert Actions'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM talert_templates WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM talert_templates WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Alert Templates'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM trecon_task WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM trecon_task WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Recon task'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tgraph WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tgraph WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Graphs'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM treport WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM treport WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Reports'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tlayout WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tlayout WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Layout visual console'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tplanned_downtime WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tplanned_downtime WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Plannet down time'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tgraph WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tgraph WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Graphs'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tgis_map WHERE group_id = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tgis_map WHERE group_id = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('GIS maps'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tgis_map_connection WHERE group_id = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tgis_map_connection WHERE group_id = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('GIS connections'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tgis_map_layer WHERE tgrupo_id_grupo = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tgis_map_layer WHERE tgrupo_id_grupo = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('GIS map layers'); } switch ($config["dbtype"]) { case "mysql": case "postgresql": $numRows = get_db_num_rows('SELECT * FROM tnetwork_map WHERE id_group = ' . $idGroup . ';'); break; case "oracle": $numRows = get_db_num_rows('SELECT * FROM tnetwork_map WHERE id_group = ' . $idGroup); break; } if ($numRows > 0) { $return['return'] = true; $return['tables'][] = __('Network maps'); } $hookEnterprise = enterprise_include_once('include/functions_groups.php'); if ($hookEnterprise !== ENTERPRISE_NOT_HOOK) { $returnEnterprise = enterprise_hook('checkUsedGroupEnterprise', array($idGroup)); if ($returnEnterprise['return']) { $return['return'] = true; $return['tables'] = array_merge($return['tables'], $returnEnterprise['tables']); } } return $return; } ?>