explnum_notice; if($ligne->explnum_bulletin != 0){ //si bulletin, les droits sont rattachés à la notice du bulletin, à défaut du pério... $req = "select bulletin_notice,num_notice from bulletins where bulletin_id =".$ligne->explnum_bulletin; $res = mysql_query($req); if(mysql_num_rows($res)){ $row = mysql_fetch_object($res); $id_for_rigths = $row->num_notice; if(!$id_for_rigths){ $id_for_rigths = $row->bulletin_notice; } } } //droits d'acces utilisateur/notice if ($gestion_acces_active==1 && $gestion_acces_user_notice==1) { require_once("$class_path/acces.class.php"); $ac= new acces(); $dom_1= $ac->setDomain(1); $rights = $dom_1->getRights($PMBuserid,$id_for_rigths); } if( $rights & 16 || (is_null($dom_1))){ if (($ligne->explnum_data)||($ligne->explnum_path)) { if ($ligne->explnum_path) { $up = new upload_folder($ligne->repertoire_id); $path = str_replace("//","/",$ligne->path); $path=$up->encoder_chaine($path); if(file_exists($path) && filesize($path)){ $fo = fopen($path,'rb'); }else{ $fo=false; } //$ligne->explnum_data=fread($fo,filesize($path)); //fclose($fo); } create_tableau_mimetype() ; $name=$_mimetypes_bymimetype_[$ligne->explnum_mimetype]["plugin"] ; if ($name) { // width='700' height='525' $name = " name='$name' "; } $type="type='$ligne->explnum_mimetype'" ; if ($_mimetypes_bymimetype_[$ligne->explnum_mimetype]["embeded"]=="yes") { print "" ; if ($fo) fclose($fo); exit ; } $nomfichier=""; if ($ligne->explnum_nomfichier) { $nomfichier=$ligne->explnum_nomfichier; } elseif ($ligne->explnum_extfichier) $nomfichier="pmb".$ligne->explnum_id.".".$ligne->explnum_extfichier; if ($nomfichier) header("Content-Disposition: inline; filename=".$nomfichier); header("Content-Type: ".$ligne->explnum_mimetype); if ($ligne->explnum_path) { if($fo){ while(!feof($fo)){ print fread($fo,4096); } //fpassthru($fo); fclose($fo); } } else print $ligne->explnum_data; exit ; } if ($ligne->explnum_mimetype=="URL") { if ($ligne->explnum_url) header("Location: $ligne->explnum_url"); exit ; } }else{ print $msg["forbidden_docnum"]; } //if($ligne->explnum_path){ // $up = new upload_folder($ligne->repertoire_id); // $path = str_replace("//","/",$ligne->path); // $path=$up->encoder_chaine($path); // $fo = fopen($path,'rb'); // header("Content-Type: ".$ligne->explnum_mimetype); // fpassthru($fo); // exit; //}