" ;
$r.="";
if (pmb_mysql_num_rows($resultat)) {
while (($app = pmb_mysql_fetch_object($resultat))) {
$selected="";
if ($app->notices_custom_list_value==$abiodoc_app) {
$selected="selected=\"selected\"";
} else {
$selected='';
}
$r.= "";
}
}
$r.="";
return $r;
}
/*
function search_other_function_clause(&$clause) {
global $abiodoc_app;
$r="";
if ($abiodoc_app) {
$r.=", notices_custom_values as e0 ".$clause." and e0.notices_custom_origine=notice_id and e0.notices_custom_integer='".$abiodoc_app."' and e0.notices_custom_champ='27' ";
}
if ($r=="") $r=$clause;
if ($clause==$r) return false; else {
$clause=$r;
return true;
}
}
*/
function search_other_function_clause() {
//doit retourner une requete de selection d'identifiants de notices
global $abiodoc_app;
$r='';
if ($abiodoc_app) {
$r.= "select distinct notices_custom_origine as notice_id from notices_custom_values where notices_custom_champ='27' and notices_custom_integer = '".$abiodoc_app."' ";
}
return $r;
}
function search_other_function_has_values() {
global $abiodoc_app;
if ($abiodoc_app) return true; else return false;
}
function search_other_function_get_values(){
global $abiodoc_app;
return $abiodoc_app;
}
function search_other_function_rec_history($n) {
global $abiodoc_app;
$_SESSION["abiodoc_app".$n]=$abiodoc_app;
}
function search_other_function_get_history($n) {
global $abiodoc_app;
$abiodoc_app=$_SESSION["abiodoc_app".$n];
}
function search_other_function_human_query($n) {
global $abiodoc_app;
$r="";
$abiodoc_app=$_SESSION["abiodoc_app".$n];
if ($abiodoc_app) {
$app="";
$requete="select notices_custom_list_lib from notices_custom_lists where notices_custom_champ='27' and notices_custom_list_value='".$abiodoc_app."' limit 1 ";
$resultat=pmb_mysql_query($requete);
if (pmb_mysql_num_rows($resultat)) {
$res=pmb_mysql_fetch_object($resultat);
$app=$res->notices_custom_list_lib;
}
if ($app) $r="appartenance : ".$app;
}
return $r;
}
function search_other_function_post_values() {
global $abiodoc_app, $charset;
return "\n";
}
?>