This commit is contained in:
Michael RICOIS 2010-06-04 14:03:45 +00:00
parent 4451fd6247
commit 4cd11d6c7b
2 changed files with 3 additions and 30 deletions

View File

@ -183,7 +183,7 @@ function defineMenu(){
); );
$children[] = array('data' => 'IndiScore + ©', $children[] = array('data' => 'IndiScore + ©',
'href' => 'menu_href_indiscoreplus'); 'href' => 'menu_href_indiscoreplus');
$children[] = array('data' => 'Rapport synthétique', $children[] = array('data' => 'Rapport de synthèse',
'href' => 'menu_href_rsynthesemin', 'href' => 'menu_href_rsynthesemin',
'perm' => 'perm' =>
array( array(

View File

@ -15,7 +15,7 @@ require_once 'scoresws/identite.php';
//=> BLOC IDENTITE //=> BLOC IDENTITE
$etab = scoresws_identite($siret, $siren, $idEntreprise); $etab = scoresws_identite($siret, $siren, $idEntreprise);
?> ?>
<h1>RAPPORT DE SYNTHESE</h1> <h1>RAPPORT COMPLET</h1>
<p id="rsynthese">SOCI&Eacute;T&Eacute; : <?=$etab['Nom']?></p> <p id="rsynthese">SOCI&Eacute;T&Eacute; : <?=$etab['Nom']?></p>
<?php <?php
@ -1372,34 +1372,7 @@ if(count($tabCommentaires)>0){
//Traitement des images //Traitement des images
$commentaires = commentaires_image($commentaires); $commentaires = commentaires_image($commentaires);
//Traitement des graphiques //Traitement des graphiques
$pattern = '/\[GRAPHIQUE id=(.*?) titre=\'(.*?)\',(.*?#[a-zA-Z]{1})]/'; $commentaires = commentaires_graphique($commentaires);
if( preg_match($pattern, $commentaires, $matches) ){
//Initialisation des éléments
//FB::log($matches[0],'graphique');
$image_id = $matches[1];
$graph_titre = $matches[2];
$ratio = array();
$ratio = explode(',', $matches[3]);
//Génération du graphique
if (($siret*1)==0 || ($siren*1)<100){
$id = 'gcomment-'.$idEntreprise.'-'.$image_id;
}else{
$id = 'gcomment-'.$siret.'-'.$image_id;
}
$image_file = commentaires_graph($id, $graph_titre, $ratio);
//Le fichier image existe
if( file_exists(PATH_SITE.'/cache/imgcache/'.$image_file) ){
$commentaires = str_replace(
$matches[0],
'<img src="./imgcache/'.$image_file.'" />',
$commentaires);
}else{
$commentaires = str_replace(
$matches[0],
'Erreur génération graphique',
$commentaires);
}
}
//Traitement pour bloc texte //Traitement pour bloc texte
if (preg_match('/(.*?)\<h([0-9]{1})\>(.*?)\<\/h[0-9]{1}\>/', $commentaires, $matches)){ if (preg_match('/(.*?)\<h([0-9]{1})\>(.*?)\<\/h[0-9]{1}\>/', $commentaires, $matches)){