num_noeud_racine; function traite_categories_enreg($notice_retour, $categories, $thesaurus_traite = 0) { // si $thesaurus_traite fourni, on ne delete que les catégories de ce thesaurus, sinon on efface toutes // les indexations de la notice sans distinction de thesaurus if (!$thesaurus_traite) { $rqt_del = "delete from notices_categories where notcateg_notice='$notice_retour' "; } else { $rqt_del = "delete from notices_categories where notcateg_notice='$notice_retour' and num_noeud in (select id_noeud from noeuds where num_thesaurus='$thesaurus_traite' and id_noeud=notices_categories.num_noeud) "; } $res_del = @pmb_mysql_query($rqt_del); $rqt_ins = "insert into notices_categories (notcateg_notice, num_noeud, ordre_categorie) VALUES "; $nb_categories = count($categories); for ($i = 0; $i < $nb_categories; $i++) { $id_categ = $categories[$i]['categ_id']; if (!empty($id_categ)) { $rqt = $rqt_ins . " ('$notice_retour','$id_categ', $i) "; $res_ins = @pmb_mysql_query($rqt); } } } function traite_categories_for_form($tableau_600 = array(), $tableau_601 = array(), $tableau_602 = array(), $tableau_605 = array(), $tableau_606 = array(), $tableau_607 = array(), $tableau_608 = array()) { global $charset, $pmb_keyword_sep, $rameau; $info_606_a = $tableau_606["info_606_a"] ; $info_606_j = $tableau_606["info_606_j"] ; $info_606_x = $tableau_606["info_606_x"] ; $info_606_y = $tableau_606["info_606_y"] ; $info_606_z = $tableau_606["info_606_z"] ; $champ_rameau=""; for ($a=0; $a "", "message" => "Rameau sera intégré avec les catégories existantes dans votre thésaurus par défaut (les catégories absentes seront intégrées en zone de mots clés libres) : ".htmlentities($champ_rameau,ENT_QUOTES,$charset)."" ); } function traite_categories_from_form() { global $rameau, $categ_pas_trouvee ; global $dbh; global $thes; $tableau_606 = unserialize(stripslashes($rameau)) ; $info_606_a = $tableau_606["info_606_a"] ; $info_606_j = $tableau_606["info_606_j"] ; $info_606_x = $tableau_606["info_606_x"] ; $info_606_y = $tableau_606["info_606_y"] ; $info_606_z = $tableau_606["info_606_z"] ; $categ_pas_trouvee=array(); for ($a=0; $aid_thesaurus, 'fr_FR', ''); if ($res_a) $categ_retour[]['categ_id'] = $res_a; else $categ_pas_trouvee[]=$libelle_final; // récup des sous-categ $j for ($j=0 ; $j < count($info_606_j[$a]) ; $j++) { $res_j = categories::searchLibelle(addslashes(trim($info_606_j[$a][$j])), $thes->id_thesaurus, 'fr_FR', ''); if ($res_j) $categ_retour[]['categ_id'] = $res_j; else $categ_pas_trouvee[]=trim($info_606_j[$a][$j]); } // récup des sous-categ $x for ($x=0 ; $x < count($info_606_x[$a]) ; $x++) { $res_x = categories::searchLibelle(addslashes(trim($info_606_x[$a][$x])), $thes->id_thesaurus, 'fr_FR', ''); if ($res_x) $categ_retour[]['categ_id'] = $res_x; else $categ_pas_trouvee[]=trim($info_606_x[$a][$x]); } for ($y=0 ; $y < count($info_606_y[$a]) ; $y++) { $res_y = categories::searchLibelle(addslashes(trim($info_606_y[$a][$y])), $thes->id_thesaurus, 'fr_FR', ''); if ($res_y) $categ_retour[]['categ_id'] = $res_y; else $categ_pas_trouvee[]=trim($info_606_y[$a][$y]); } for ($z=0 ; $z < count($info_606_z[$a]) ; $z++) { $res_z = categories::searchLibelle(addslashes(trim($info_606_z[$a][$z])), $thes->id_thesaurus, 'fr_FR', ''); if ($res_z) $categ_retour[]['categ_id'] = $res_z; else $categ_pas_trouvee[]=trim($info_606_z[$a][$z]); } } // DEBUG echo "
"; print_r($categ_retour) ; echo "
"; exit ; return $categ_retour ; } function create_categ_z3950($num_parent, $libelle, $index) { global $thes; $n = new noeuds(); $n->num_thesaurus = $thes->id_thesaurus; $n->num_parent = $num_parent; $n->save(); $c = new categories($n->id_noeud, 'fr_FR'); $c->libelle_categorie = $libelle; $c->index_categorie = $index; $c->save(); return $n->id_noeud; }