pandorafms/pandora_console/include/functions_network_profiles.php

63 lines
1.8 KiB
PHP

<?php
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2009 Artica Soluciones Tecnologicas
// 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.
/**
* @package Include
* @subpackage Modules
*/
/**
* Get a network profile.
*
* @param int Profile id to get.
* @param array Extra filter.
* @param array Fields to get.
*
* @return Profile with the given id. False if not available or readable.
*/
function get_network_profile ($id_network_profile, $filter = false, $fields = false) {
global $config;
$id_network_profile = safe_int ($id_network_profile);
if (empty ($id_network_profile))
return false;
if (! is_array ($filter))
$filter = array ();
$filter['id_np'] = $id_network_profile;
return @get_db_row_filter ('tnetwork_profile', $filter, $fields);
}
/**
* Deletes a network_profile.
*
* @param int Network profile id to be deleted.
*
* @return bool True if deleted, false otherwise.
*/
function delete_network_profile ($id_network_profile) {
$id_network_profile = safe_int ($id_network_profile);
if (empty ($id_network_profile))
return false;
$profile = get_network_profile ($id_network_profile);
if ($profile === false)
return false;
return @process_sql_delete ('tnetwork_profile',
array ('id_np' => $id_network_profile));
}
?>