54 lines
1.7 KiB
PHP
54 lines
1.7 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Extension to manage a list of gateways and the node address where they should
|
||
|
* point to.
|
||
|
*
|
||
|
* @category Extensions
|
||
|
* @package Pandora FMS
|
||
|
* @subpackage Community
|
||
|
* @version 1.0.0
|
||
|
* @license See below
|
||
|
*
|
||
|
* ______ ___ _______ _______ ________
|
||
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
||
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
||
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
||
|
*
|
||
|
* ============================================================================
|
||
|
* Copyright (c) 2005-2019 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 General Public License
|
||
|
* 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.
|
||
|
* ============================================================================
|
||
|
*/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Retrieves source ID for given source.
|
||
|
*
|
||
|
* @param string $source Source.
|
||
|
*
|
||
|
* @return integer source's id.
|
||
|
*/
|
||
|
function get_notification_source_id(string $source)
|
||
|
{
|
||
|
if (empty($source) === true) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return db_get_value_sql(
|
||
|
sprintf(
|
||
|
'SELECT id
|
||
|
FROM `tnotification_source`
|
||
|
WHERE lower(`description`) = lower("%s")',
|
||
|
$source
|
||
|
)
|
||
|
);
|
||
|
}
|