table;
}
// définition de la classe d'affichage des monographies en liste pour selecteur
class sel_mono_display {
public $notice_id = 0; //id notice
public $notice = ''; //objet notice
public $header = ''; //entete
public $result = ''; //affichage final
public $isbd = ''; //isbd notice
public $responsabilites = array("responsabilites" => array(),"auteurs" => array()); //auteurs
public $statut = '' ; //statut notice
public $tit_serie = ''; //titre serie
public $tit1 = ''; //titre 1
public $nb_expl = 0; //nb exemplaires
public $base_url = ''; //URL a associer aux elements cliquables
public $action = ''; //action a effectuer pour retour des parametres
public $action_values = array(); //tableau des elements à modifier dans l'action
public $code = ''; //isbn ou code EAN de la notice à afficher
public $titre = ''; //titre renvoye
public $auteur1 = ''; //auteur1 renvoye
public $editeur1 = ''; //editeur1 renvoye
public $collection = ''; //collection renvoyee
public $prix = '0.00'; //prix renvoye
public $form_checker = ''; //Affichage d'une case à cocher sur le template
// constructeur
public function __construct($notice_id, $base_url, $form_checker='') {
$this->notice_id=$notice_id+0;
$this->base_url=$base_url;
$this->form_checker=$form_checker;
}
//creation formulaire
public function doForm() {
$this->getData();
$this->responsabilites = get_notice_authors($this->notice_id) ;
$this->doHeader();
$this->doContent();
$this->finalize();
}
// récupération des valeurs en table
public function getData() {
global $dbh;
$q = "SELECT * FROM notices WHERE notice_id='".$this->notice_id."' ";
$r = pmb_mysql_query($q, $dbh);
if(pmb_mysql_num_rows($r)) {
$this->notice = pmb_mysql_fetch_object($r);
}
$q = "select count(*) from exemplaires where expl_notice='".$this->notice_id."' ";
$r = pmb_mysql_query($q, $dbh);
$this->nb_expl = pmb_mysql_result($r,0,0);
}
// creation header
public function doHeader() {
global $dbh, $charset;
global $pmb_notice_reduit_format;
//gen. statut
if ($this->notice->statut) {
$rqt_st = "SELECT class_html , gestion_libelle FROM notice_statut WHERE id_notice_statut='".$this->notice->statut."' ";
$res_st = pmb_mysql_query($rqt_st, $dbh) or die ($rqt_st. " ".pmb_mysql_error()) ;
$class_html = " class='".pmb_mysql_result($res_st, 0, 0)."' ";
if ($this->notice->statut>1) $txt = pmb_mysql_result($res_st, 0, 1) ;
else $txt = "" ;
} else {
$class_html = " class='statutnot1' " ;
$txt = "" ;
}
if ($this->notice->commentaire_gestion) {
if ($txt) $txt .= ":\r\n".$this->notice->commentaire_gestion ;
else $txt = $this->notice->commentaire_gestion ;
}
if ($txt) {
$statut = "notice_id."'); z.style.display=''; \" onmouseout=\"z=document.getElementById('zoom_statut".$this->notice_id."'); z.style.display='none'; \">";
$statut .= "
$zoneNote.";
}
//Indexation décimale
if($this->notice->indexint) {
$indexint = new indexint($this->notice->indexint);
$indexint_isbd=$indexint->display;
$this->isbd .= " ".$msg['indexint_catal_title']." : ".$indexint_isbd;
}
}
//génération du template javascript
public function finalize() {
global $msg,$charset;
$javascript_template ="
";
if(trim($this->form_checker)){
$javascript_template.="action) {
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$javascript_template.=" attr_".$v."=\"".htmlentities($this->$v,ENT_QUOTES,$charset)."\"";
}
}
}
$javascript_template.=">";
}
$javascript_template.="
!!header!!
!!isbd!!
";
if ($this->action) {
$this->header = str_replace('!!display!!', $this->header, $this->action);
$this->header = $this->statut.$this->header;
$this->header = str_replace('!!id!!', $this->notice_id, $this->header);
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$this->header = str_replace("!!$v!!", htmlentities(addslashes($this->$v),ENT_QUOTES,$charset), $this->header);
}
}
}
$this->result = str_replace('!!id!!', $this->notice_id, $javascript_template);
$this->result = str_replace('!!header!!', $this->header, $this->result);
$this->result = str_replace('!!isbd!!', $this->isbd, $this->result);
}
}
// définition de la classe d'affichage des périodiques en liste pour selecteur
class sel_serial_display {
public $notice_id = 0; // id de la notice à afficher
public $notice; // objet notice (tel que fetché dans la table 'notices'
public $header = ''; // chaine accueillant le chapeau de notice (peut-être cliquable)
public $tit1 = ''; // valeur du titre 1
public $result = ''; // affichage final
public $level = 1; // niveau d'affichage
public $isbd = ''; // isbd de la notice
public $nb_bull = 0; // nombre de bulletins
public $nb_expl = 0; // nombre d'exemplaires
public $nb_art = 0; // nombre d'articles
public $responsabilites = array("responsabilites" => array(),"auteurs" => array()); // les auteurs
public $show_statut = 1;
public $aff_statut = '' ; // carré de couleur pour signaler le statut de la notice
public $base_url = ''; // URL à associer aux éléments cliquables
public $action = ''; // URL à associer aux notices
public $action_values = array(); // tableau des elements à modifier dans l'action
// constructeur
public function __construct($notice_id, $base_url) {
$this->notice_id = $notice_id+0;
$this->base_url = $base_url;
}
//creation formulaire
public function doForm() {
$this->getData();
$this->responsabilites = get_notice_authors($this->notice_id) ;
$this->doHeader();
$this->initJavascript();
$this->doContent();
$this->finalize();
return;
}
// récupération des valeurs en table
public function getData() {
global $dbh;
$q = "SELECT * FROM notices WHERE notice_id=".$this->notice_id;
$r = pmb_mysql_query($q, $dbh);
if (pmb_mysql_num_rows($r)) {
$this->notice = pmb_mysql_fetch_object($r);
}
}
// creation header
public function doHeader() {
global $dbh, $charset;
if ($this->notice->statut) {
$rqt_st = "SELECT class_html , gestion_libelle FROM notice_statut WHERE id_notice_statut='".$this->notice->statut."' ";
$res_st = pmb_mysql_query($rqt_st, $dbh);
$class_html = " class='".pmb_mysql_result($res_st, 0, 0)."' ";
if ($this->notice->statut>1) {
$txt = pmb_mysql_result($res_st, 0, 1);
} else {
$txt = '';
}
} else {
$class_html = " class='statutnot1' " ;
$txt = '' ;
}
if ($this->notice->commentaire_gestion) {
if ($txt) {
$txt .= ":\r\n".$this->notice->commentaire_gestion ;
} else {
$txt = $this->notice->commentaire_gestion ;
}
}
if ($txt) {
$statut = "notice_id."'); z.style.display=''; \" onmouseout=\"z=document.getElementById('zoom_statut".$this->notice_id."'); z.style.display='none'; \">";
$statut .= "
";
}
//état des collections
if ($pmb_etat_collections_localise&&$pmb_droits_explr_localises&&$explr_visible_mod) {
$restrict_location=" and location_id in (".$explr_visible_mod.") and idlocation=location_id";
$table_location=",docs_location";
$select_location=",location_libelle";
} else {
$restrict_location = " group by id_serial";
$select_location = "";
$table_location = "";
}
$rqt="select state_collections$select_location from collections_state$table_location where id_serial=".$this->notice_id.$restrict_location;
$execute_query=pmb_mysql_query($rqt);
if ($execute_query) {
if (pmb_mysql_num_rows($execute_query)) {
$bool = false;
$affichage = " ".$msg["4001"]." ";
while ($r = pmb_mysql_fetch_object($execute_query)) {
if (!empty($r->state_collections)) {
if (!empty($r->location_libelle)) {
$affichage .= "".$r->location_libelle." : ";
}
$affichage .= $r->state_collections." \n";
$bool = true;
}
}
if ($bool == true) {
$this->isbd .= $affichage;
}
}
}
}
return;
}
// finalisation du résultat
public function finalize() {
global $msg ;
$this->result = str_replace('!!isbd!!', $this->isbd, $this->result);
$this->result = str_replace('!!serial_type!!', "[".$msg['isbd_type_perio']."]", $this->result);
}
}
//définition de la classe d'affichage des bulletins en liste pour selecteur
class sel_bulletin_display {
public $result = '';
public $bulletin_id=0;
public $bulletin = '';
public $nb_expl=0;
public $base_url = ''; // URL à associer aux éléments cliquables
public $action = ''; // URL à associer aux notices
public $action_values = array(); // tableau des elements à modifier dans l'action
public $titre = ''; //titre renvoye
public $editeur1 = ''; //editeur 1 renvoye
public $numero = ''; //numero renvoye
public $aff_date = ''; //date renvoyee
public $prix = '0.00'; //prix renvoye
public $code = ''; //code renvoye
public $form_checker = ''; //Affichage d'une case à cocher sur le template
//constructeur
public function __construct($bulletin_id, $base_url, $form_checker='') {
$this->bulletin_id=$bulletin_id+0;
$this->base_url=$base_url;
$this->form_checker=$form_checker;
}
public function doForm() {
global $charset;
$this->getData();
$this->titre = $this->bulletin->tit1;
if ($this->bulletin->ed1_id) {
$ed1= new editeur($this->bulletin->ed1_id);
$this->editeur1 = $ed1->get_isbd();
}
if ($this->bulletin->bulletin_numero!=='') {
$this->numero = $this->bulletin->bulletin_numero;
}
if ($this->bulletin->libelle_periode) {
$this->aff_date = "(".$this->bulletin->libelle_periode.")";
}
if ($this->bulletin->date_date!='0000-00-00') {
$this->aff_date.= " [".$this->bulletin->aff_date_date."]";
}
if ($this->bulletin->bulletin_cb!='') {
$this->code = $this->bulletin->bulletin_cb;
}
$aff = $this->titre;
if($this->numero) {
$aff.= '. '.$this->numero;
}
$aff.= ' '.$this->aff_date;
$aff = htmlentities($aff, ENT_QUOTES, $charset);
if ($this->action) {
$aff= str_replace('!!display!!', "$aff", $this->action);
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$aff = str_replace("!!$v!!", addslashes($this->$v), $aff);
}
}
}
if(trim($this->form_checker)){
$tmpAff ="
action) {
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$tmpAff.=" attr_".$v."=\"".htmlentities($this->$v,ENT_QUOTES,$charset)."\"";
}
}
}
$this->result=$tmpAff.">".$aff."";
}else{
$this->result = $aff;
}
}
// récupération des valeurs en table
public function getData() {
global $dbh, $msg;
$q = "SELECT notices.tit1, notices.ed1_id, notices.code, bulletins.*, date_format(bulletins.date_date, '".$msg['format_date']."') as aff_date_date FROM bulletins join notices on bulletin_notice=notice_id WHERE bulletin_id='".$this->bulletin_id."' ";
$r = pmb_mysql_query($q, $dbh);
if(pmb_mysql_num_rows($r)) {
$this->bulletin = pmb_mysql_fetch_object($r);
}
$q = "select count(*) from exemplaires where expl_bulletin='".$this->bulletin_id."' ";
$r = pmb_mysql_query($q, $dbh);
$this->nb_expl = pmb_mysql_result($r,0,0);
}
}
//définition de la classe d'affichage des abonnements en liste pour selecteur
class sel_abt_display {
public $abt_id=0; //id abonnement
public $abt = ''; //objet abonnement
public $header = ''; //entete
public $result = ''; // affichage final
public $isbd = ''; // isbd notice
public $responsabilites = array("responsabilites" => array(),"auteurs" => array()); //auteurs
public $aff_date_echeance = ''; //date echeance abt actuel
public $aff_nb_recipients = 0; //nombre de destinataires abt actuel
public $base_url = ''; // URL à associer aux éléments cliquables
public $action = ''; // URL à associer aux notices
public $action_values = array(); // tableau des elements à modifier dans l'action
public $code = ''; //code renvoye
public $titre = ''; //titre renvoye
public $editeur1 = ''; //editeur 1 renvoye
public $periodicite = ''; //periodicite
public $duree = ''; //duree abt
public $prix = '0.00'; //prix renvoye
public $aff_date_debut = ''; //date debut abt renvoyee
public $abt_name = ''; //nom abonnement renvoyee
public $form_checker = ''; //Affichage d'une case à cocher sur le template
//TODO
public $nb_num = 0; //nb numeros
//constructeur
public function __construct($abt_id, $base_url, $form_checker='') {
$this->abt_id=$abt_id+0;
$this->base_url=$base_url;
$this->form_checker=$form_checker;
}
//creation formulaire
public function doForm() {
$this->getData();
$this->responsabilites = get_notice_authors($this->abt->num_notice) ;
$this->doHeader();
$this->doContent();
$this->finalize();
}
// récupération des valeurs en table
public function getData() {
global $dbh;
$q = "SELECT abts_abts.*, ";
$q.= "notices.tit1, notices.tit3, notices.tit4, notices.ed1_id, notices.ed2_id, notices.year, notices.code, notices.prix, ";
$q.= "abts_modeles.num_periodicite, abts_periodicites.libelle, ";
$q.= "docs_location.location_libelle ";
$q.= "FROM abts_abts ";
$q.= "join abts_abts_modeles on abts_abts.abt_id=abts_abts_modeles.abt_id ";
$q.= "join abts_modeles on abts_abts_modeles.modele_id=abts_modeles.modele_id ";
$q.= "left join abts_periodicites on abts_modeles.num_periodicite=abts_periodicites.periodicite_id ";
$q.= "join notices on abts_abts.num_notice=notices.notice_id ";
$q.= "join docs_location on abts_abts.location_id=docs_location.idlocation ";
$q.= "where abts_abts.abt_id='".$this->abt_id."' ";
$r = pmb_mysql_query($q, $dbh);
$this->abt = pmb_mysql_fetch_object($r);
}
// creation header
public function doHeader() {
global $dbh, $msg, $charset;
global $pmb_serialcirc_active;
//aff. nom pério
$this->header = htmlentities($this->abt->tit1, ENT_QUOTES, $charset);
//aff. nom abonnement
$this->header.= " / ".htmlentities($this->abt->abt_name, ENT_QUOTES, $charset);
//aff. localisation
$this->header.= " / ".htmlentities($this->abt->location_libelle, ENT_QUOTES, $charset);
//aff. periodicite
if ($this->abt->num_periodicite) {
$this->header.= " (".htmlentities($this->abt->libelle, ENT_QUOTES, $charset);
} else {
$this->header.= " (".htmlentities($msg['abonnements_periodicite_manuel'], ENT_QUOTES, $charset);
}
//aff. duree
$this->header.= " - ".$this->abt->duree_abonnement." ".htmlentities($msg['abonnements_periodicite_unite_mois'], ENT_QUOTES, $charset).")";
//aff. date echeance
$this->aff_date_echeance = format_date($this->abt->date_fin);
//aff. nb destinataire
if($pmb_serialcirc_active) {
$serialcirc_diff=new serialcirc_diff(0,$this->abt_id);
$this->aff_nb_recipients = $serialcirc_diff->diffusion_nb_recipients;
}
//renv. nom abonnement
$this->abt_name.= $this->abt->abt_name;
//renv. code
$this->code=$this->abt->code;
//renv. titre
$this->titre = $this->abt->tit1;
if ($this->abt->tit3) $this->titre.= " = ".$this->abt->tit3;
if ($this->abt->tit4) $this->titre.= " : ".$this->abt->tit4;
//renv. editeur1
if ($this->abt->ed1_id) {
$editeur = new editeur($this->abt->ed1_id);
$this->editeur1 = $editeur->get_isbd();
}
//renv. periodicite
if ($this->abt->num_periodicite) {
$this->periodicite=$this->abt->libelle;
}
//renv. duree
$this->duree = $this->abt->duree_abonnement;
//renv. date debut abt
$q = "select date_add('".$this->abt->date_fin."', interval 1 day) as date_debut, ";
$q.= " date_add('".$this->abt->date_fin."', interval ".$this->duree." month) as date_fin ";
$r = pmb_mysql_query($q, $dbh);
$obj = pmb_mysql_fetch_object($r);
$this->aff_date_debut = format_date($obj->date_debut);
//TODO A revoir, car le prix n'est pas accessible sur les notices de perio
//renv. prix
if ($this->abt->prix!=='') $this->prix=$this->abt->prix;
}
// creation contenu
public function doContent() {
global $msg;
global $fonction_auteur;
//mention titre
$this->isbd = $this->titre;
//mention responsabilité
$mention_resp = array() ;
$as = array_search ("0", $this->responsabilites["responsabilites"]) ;
if ($as!== FALSE && $as!== NULL) {
$auteur_0 = $this->responsabilites["auteurs"][$as] ;
$auteur = new auteur($auteur_0["id"]);
$mention_resp_lib = $auteur->get_isbd();
if ($auteur_0["fonction"]) {
$mention_resp_lib .= ", ".$fonction_auteur[$auteur_0["fonction"]];
}
$mention_resp[] = $mention_resp_lib ;
}
$as = array_keys ($this->responsabilites["responsabilites"], "1" ) ;
for ($i = 0 ; $i < count($as) ; $i++) {
$indice = $as[$i] ;
$auteur_1 = $this->responsabilites["auteurs"][$indice] ;
$auteur = new auteur($auteur_1["id"]);
$mention_resp_lib = $auteur->get_isbd();
if ($auteur_1["fonction"]) {
$mention_resp_lib .= ", ".$fonction_auteur[$auteur_1["fonction"]];
}
$mention_resp[] = $mention_resp_lib ;
}
$as = array_keys ($this->responsabilites["responsabilites"], "2" ) ;
for ($i = 0 ; $i < count($as) ; $i++) {
$indice = $as[$i] ;
$auteur_2 = $this->responsabilites["auteurs"][$indice] ;
$auteur = new auteur($auteur_2["id"]);
$mention_resp_lib = $auteur->get_isbd();
if ($auteur_2["fonction"]) {
$mention_resp_lib .= ", ".$fonction_auteur[$auteur_2["fonction"]];
}
$mention_resp[] = $mention_resp_lib ;
}
$libelle_mention_resp = implode ("; ",$mention_resp) ;
if($libelle_mention_resp) {
$this->isbd .= " / ". $libelle_mention_resp ." " ;
}
// zone de l'adresse
$ed_isbd = '';
if($this->abt->ed1_id) {
$editeur = new editeur($this->abt->ed1_id);
$ed_isbd .= $editeur->get_isbd();
}
if($this->abt->year) {
if ($ed_isbd) {
$ed_isbd .= ', '.$this->abt->year;
} else {
$ed_isbd = $this->abt->year;
}
}
if($ed_isbd) {
$this->isbd .= ". - $ed_isbd";
}
//code (ISSN,...)
if ($this->abt->code) $this->isbd .=" ${msg[165]} : ".$this->abt->code;
}
//génération du template javascript
public function finalize() {
global $msg,$charset;
$javascript_template ="
";
if(trim($this->form_checker)){
$javascript_template.="action) {
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$javascript_template.=" attr_".$v."=\"".htmlentities($this->$v,ENT_QUOTES,$charset)."\"";
}
}
}
$javascript_template.=">";
}
$javascript_template.="
!!header!!
!!serial_type!! !!isbd!!
";
if ($this->action) {
$this->header = str_replace('!!display!!', $this->header, $this->action);
$this->header = str_replace('!!id!!', $this->abt_id, $this->header);
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$this->header = str_replace("!!$v!!", htmlentities(addslashes($this->$v),ENT_QUOTES,$charset), $this->header);
}
}
}
$this->result = str_replace('!!id!!', $this->abt_id, $javascript_template);
$this->result = str_replace('!!header!!', $this->header, $this->result);
$this->result = str_replace('!!isbd!!', $this->isbd, $this->result);
$this->result = str_replace('!!serial_type!!', "[".$msg['isbd_type_perio']."]", $this->result);
}
}
require_once("$class_path/frais.class.php");
require_once($class_path.'/tva_achats.class.php');
//Classe d'affichage des frais dans un selecteur
class sel_frais_display extends frais {
public $result='';
public $lib_montant='';
public $taux_tva = '0.00';
public $base_url = ''; //URL a associer aux elements cliquables
public $action = '';
public $action_values = array();
public $form_checker = ''; //Affichage d'une case à cocher sur le template
//Constructeur.
public function __construct($id_frais, $base_url, $form_checker='') {
$id_frais += 0;
parent::__construct($id_frais);
$this->base_url=$base_url;
$this->form_checker=$form_checker;
}
public function doForm(){
global $charset;
global $acquisition_gestion_tva, $pmb_gestion_devise;
if(!$this->id_frais) return;
if ($acquisition_gestion_tva && $this->num_tva_achat) {
$tva = new tva_achats($this->num_tva_achat);
$this->taux_tva = $tva->taux_tva;
}
$aff = htmlentities($this->libelle, ENT_QUOTES, $charset);
if ($this->action) {
$aff= str_replace('!!display!!', "$aff", $this->action);
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$aff = str_replace("!!$v!!", addslashes($this->$v), $aff);
}
}
}
if(trim($this->form_checker)){
$tmpAff ="
action) {
if (count($this->action_values)) {
foreach($this->action_values as $v) {
$tmpAff.=" attr_".$v."=\"".htmlentities($this->$v,ENT_QUOTES,$charset)."\"";
}
}
}
$this->result=$tmpAff.">".$aff."";
}else{
$this->result = $aff;
}
$this->lib_montant = $this->montant.' '.$pmb_gestion_devise;
}
}
// définition de la classe d'affichage des articles en liste pour selecteur
class sel_article_display {
public $notice_id = 0; //id notice
public $notice = ''; //objet notice
public $header = ''; //entete
public $result = ''; //affichage final
public $isbd = ''; //isbd notice
public $responsabilites = array("responsabilites" => array(),"auteurs" => array()); //auteurs
public $statut = '' ; //statut notice
public $tit_serie = ''; //titre serie
public $tit1 = ''; //titre 1
public $parent_title = '';
public $parent_numero = '';
public $parent_date = '';
public $parent_date_date = '';
public $parent_aff_date_date = '';
public $base_url = ''; //URL a associer aux elements cliquables
public $action = ''; //action a effectuer pour retour des parametres
public $action_values = array(); //tableau des elements à modifier dans l'action
public $code = ''; //isbn ou code EAN de la notice à afficher
public $titre = ''; //titre renvoye
public $auteur1 = ''; //auteur1 renvoye
public $in_bull = ''; //lien bulletin renvoye
public $prix = '0.00'; //prix renvoye
public $form_checker = ''; //Affichage d'une case à cocher sur le template
// constructeur
public function __construct($notice_id, $base_url, $form_checker='') {
$this->notice_id=$notice_id+0;
$this->base_url=$base_url;
$this->form_checker=$form_checker;
}
//creation formulaire
public function doForm() {
$this->getData();
$this->responsabilites = get_notice_authors($this->notice_id) ;
$this->doHeader();
$this->doContent();
$this->finalize();
}
// récupération des valeurs en table
public function getData() {
global $dbh,$msg;
$q = "SELECT * FROM notices WHERE notice_id='".$this->notice_id."' ";
$r = pmb_mysql_query($q, $dbh);
if(pmb_mysql_num_rows($r)) {
$this->notice = pmb_mysql_fetch_object($r);
}
// récupération des données du bulletin et de la notice apparentée
$requete = "SELECT b.tit1,c.*,date_format(date_date, '".$msg["format_date"]."') as aff_date_date ";
$requete.= "from analysis a, notices b, bulletins c ";
$requete.= "WHERE a.analysis_notice=".$this->notice_id." ";
$requete.= "AND c.bulletin_id=a.analysis_bulletin ";
$requete .= "AND c.bulletin_notice=b.notice_id ";
$requete.= "LIMIT 1";
$myQuery = pmb_mysql_query($requete, $dbh);
if (pmb_mysql_num_rows($myQuery)) {
$parent = pmb_mysql_fetch_object($myQuery);
$this->parent_title = $parent->tit1;
$this->parent_numero = $parent->bulletin_numero;
$this->parent_date = $parent->mention_date;
$this->parent_date_date = $parent->date_date;
$this->parent_aff_date_date = $parent->aff_date_date;
}
}
// creation header
public function doHeader() {
global $dbh, $charset;
global $pmb_notice_reduit_format;
//gen. statut
if ($this->notice->statut) {
$rqt_st = "SELECT class_html , gestion_libelle FROM notice_statut WHERE id_notice_statut='".$this->notice->statut."' ";
$res_st = pmb_mysql_query($rqt_st, $dbh) or die ($rqt_st. " ".pmb_mysql_error()) ;
$class_html = " class='".pmb_mysql_result($res_st, 0, 0)."' ";
if ($this->notice->statut>1) $txt = pmb_mysql_result($res_st, 0, 1) ;
else $txt = "" ;
} else {
$class_html = " class='statutnot1' " ;
$txt = "" ;
}
if ($this->notice->commentaire_gestion) {
if ($txt) $txt .= ":\r\n".$this->notice->commentaire_gestion ;
else $txt = $this->notice->commentaire_gestion ;
}
if ($txt) {
$statut = "notice_id."'); z.style.display=''; \" onmouseout=\"z=document.getElementById('zoom_statut".$this->notice_id."'); z.style.display='none'; \">";
$statut .= "