mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-26 11:29:12 +02:00
* godmode/agentes/agent_manager.php: Fixed an error when an agent was created without name. Added support for new server assignment via server name instead of lot of comboboxes. Added os preview. * godmode/agentes/configurar_agente.php: Added support for new server assignment via server name. Do not show tabs on creation mode. Some translatable strings replaced with common ones. * godmode/agentes/modificar_agente.php: Use Pandora agents. * godmode/modules/manage_nc_groups.php, godmode/setup/news.php, godmode/modules/manage_network_components.php, godmode/reporting/map_builder.php, godmode/agentes/planned_downtime.php: Some translatable strings replaced with common ones. * godmode/servers/modificar_server.php: Updated to changes in tserver. Use get_server_info() for that. * include/functions_db.php: Updated to changes in tserver about server_type field on get_server_info(). Style correction. * include/functions_servers.php: Added to repository. Servers API. * operation/servers/view_server.php: Style correction. * extras/pandoradb_migrate_v2.x_to_v3.0.sql, pandoradb.sql: Less space on server_name field on tagente. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1615 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
57 lines
1.7 KiB
PHP
57 lines
1.7 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - the Flexible Monitoring System
|
|
// ============================================
|
|
// Copyright (c) 2008 Artica Soluciones Tecnologicas, http://www.artica.es
|
|
// Please see http://pandora.sourceforge.net 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 (LGPL)
|
|
// as published by the Free Software Foundation for 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.
|
|
// 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.
|
|
|
|
/**
|
|
* Get a server.
|
|
*
|
|
* @param int Server id to get.
|
|
* @param array Extra filter.
|
|
* @param array Fields to get.
|
|
*
|
|
* @return Server with the given id. False if not available.
|
|
*/
|
|
function get_server ($id_server, $filter = false, $fields = false) {
|
|
if (empty ($id_server))
|
|
return false;
|
|
if (! is_array ($filter))
|
|
$filter = array ();
|
|
$filter['id_server'] = $id_server;
|
|
|
|
return @get_db_row_filter ('tserver', $filter, $fields);
|
|
}
|
|
|
|
/**
|
|
* Get all the server availables.
|
|
*
|
|
* @return All the servers available.
|
|
*/
|
|
function get_server_names () {
|
|
$all_servers = @get_db_all_rows_filter ('tserver', false, array ('DISTINCT(`name`) as name'));
|
|
if ($all_servers === false)
|
|
return array ();
|
|
|
|
$servers = array ();
|
|
foreach ($all_servers as $server) {
|
|
$servers[$server['name']] = $server['name'];
|
|
}
|
|
return $servers;
|
|
}
|
|
|
|
?>
|