74 lines
2.1 KiB
PHP
74 lines
2.1 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 Network profiles
|
|
*/
|
|
|
|
/**
|
|
* 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 network_profiles_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 @db_get_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 network_profiles_delete_network_profile ($id_network_profile) {
|
|
$id_network_profile = safe_int ($id_network_profile);
|
|
if (empty ($id_network_profile))
|
|
return false;
|
|
$profile = network_profiles_get_network_profile ($id_network_profile);
|
|
if ($profile === false)
|
|
return false;
|
|
return @db_process_sql_delete ('tnetwork_profile',
|
|
array ('id_np' => $id_network_profile));
|
|
}
|
|
|
|
/**
|
|
* Get a network profile name.
|
|
*
|
|
* @param int Id network profile
|
|
*
|
|
* @return string Name of the given network profile.
|
|
*/
|
|
function network_profiles_get_name ($id_network_profile) {
|
|
return (string) db_get_value ('name', 'tnetwork_profile', 'id_np', $id_network_profile);
|
|
}
|
|
|
|
?>
|