$sql='SELECT nombre, id_grupo id FROM tgrupo WHERE LOWER(nombre) LIKE LOWER("%'.io_safe_input($payload['search']).'%")';
// If search is for agents
}elseif($payload['type']=='agent'){
// Get agents that match the search
$sql='SELECT a.alias nombre, a.id_agente id FROM tagente a, tgrupo g WHERE a.disabled = 0 AND a.id_grupo = g.id_grupo AND LOWER(a.alias) LIKE LOWER("%'.io_safe_input($payload['search']).'%")';
// If search group is not all, add extra filter
if($payload['extra']!=0){
$sql.=' AND g.id_grupo = "'.io_safe_input($payload['extra']).'"';
}
// If search is for modules
}elseif($payload['type']=='module'){
// Get modules that match the search (not string)
$sql='SELECT m.nombre nombre, m.id_agente_modulo id FROM tagente_modulo m, tagente a, ttipo_modulo t WHERE m.disabled = 0 AND m.id_agente = a.id_agente AND t.id_tipo = m.id_tipo_modulo AND a.id_agente = "'.io_safe_input($payload['extra']).'" AND LOWER(m.nombre) LIKE LOWER("%'.io_safe_input($payload['search']).'%") AND t.nombre NOT LIKE "%string"';
}
// Run query
$sql_results=db_get_all_rows_sql($sql);
foreach($sql_resultsas$sql_result){
// If search is for groups, only add those with permissions