";
$r.="";
$requete="select * from notices_custom_lists where notices_custom_champ=1 order by notices_custom_list_lib";
$resultat=pmb_mysql_query($requete);
while (($res=pmb_mysql_fetch_object($resultat))) {
$r.="";
}
$r.="";
$r.="";
$r.="";
return $r;
}
function search_other_function_clause() {
global $cnl_comission,$cnl_annee,$cnl_mois;
$r = "";
if ($cnl_annee || $cnl_mois) {
if ($cnl_annee && $cnl_mois) $filtre_date=$cnl_annee."-".$cnl_mois."%";
elseif (!$cnl_annee && $cnl_mois) $filtre_date="%-".$cnl_mois."-%";
else $filtre_date=$cnl_annee."-%";
$r .= "select notices_custom_origine from notices_custom_values where notices_custom_date like '".$filtre_date."' and notices_custom_champ=".get_field_dateparution()." ";
if ($cnl_comission) {
$r .= " and (notices_custom_small_text='".$cnl_comission."' and notices_custom_champ=1)";
}
} else {
if ($cnl_comission) {
$r .= "select notices_custom_origine from notices_custom_values where (notices_custom_small_text='".$cnl_comission."' and notices_custom_champ=1)";
}
}
return $r;
}
function search_other_function_has_values() {
global $cnl_comission,$cnl_annee;
if (($cnl_comission)||($cnl_annee)) return true; else return false;
}
function search_other_function_get_values(){
global $cnl_comission,$cnl_annee,$cnl_mois;
return $cnl_comission."---".$cnl_annee."---".$cnl_mois;
}
function search_other_function_rec_history($n) {
global $cnl_comission,$cnl_annee,$cnl_mois;
$_SESSION["cnl_comission".$n]=$cnl_comission;
$_SESSION["cnl_annee".$n]=$cnl_annee;
$_SESSION["cnl_mois".$n]=$cnl_mois;
}
function search_other_function_get_history($n) {
global $cnl_comission,$cnl_annee,$cnl_mois;
$cnl_comission=$_SESSION["cnl_comission".$n];
$cnl_annee=$_SESSION["cnl_annee".$n];
$cnl_mois=$_SESSION["cnl_mois".$n];
}
function search_other_function_human_query($n) {
global $cnl_comission,$cnl_annee,$cnl_mois;
global $msg;
$r="";
$cnl_comission=$_SESSION["cnl_comission".$n];
$cnl_annee=$_SESSION["cnl_annee".$n];
$cnl_mois=$_SESSION["cnl_mois".$n];
if ($cnl_comission) {
$r="commission : ";
$requete="select notices_custom_list_lib from notices_custom_lists where notices_custom_champ=1 and notices_custom_list_value='".$cnl_comission."' limit 1";
$res=pmb_mysql_query($requete);
$r.=@pmb_mysql_result($res,0,0);
}
if ($cnl_annee || $cnl_mois) {
if ($r) $r.=", ";
if ($cnl_annee && $cnl_mois) $r.=$msg[1005+$cnl_mois]." ".$cnl_annee;
elseif (!$cnl_annee && $cnl_mois) $r.=$msg[1005+$cnl_mois];
else $r.="année : ".$cnl_annee;
}
return $r;
}
?>