mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Merge branch 'redeclare-agents_get_agent_id_by_alias-dev' into 'develop'
Fixed redeclare function See merge request artica/pandorafms!1135
This commit is contained in:
commit
13369ddab4
@ -1317,24 +1317,6 @@ function agents_get_agent_id ($agent_name, $io_safe_input = false) {
|
|||||||
return (int) db_get_value ('id_agente', 'tagente', 'nombre', $agent_name);
|
return (int) db_get_value ('id_agente', 'tagente', 'nombre', $agent_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get agents id from an agent alias.
|
|
||||||
*
|
|
||||||
* @param string $agent_alias Agent alias to get its id.
|
|
||||||
* @param boolean $io_safe_input If it is true transform to safe string, by default false.
|
|
||||||
*
|
|
||||||
* @return int Id from the agent of the given alias.
|
|
||||||
*/
|
|
||||||
function agents_get_agent_id_by_alias ($alias, $io_safe_input = false) {
|
|
||||||
if ($io_safe_input) {
|
|
||||||
$alias = io_safe_input($alias);
|
|
||||||
}
|
|
||||||
$sql = sprintf("SELECT tagente.id_agente FROM tagente WHERE alias LIKE '%s' ",$alias);
|
|
||||||
$agent_id = db_get_all_rows_sql($sql);
|
|
||||||
|
|
||||||
return $agent_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get name of an agent.
|
* Get name of an agent.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user