2011-12-19 09:44:31 +00:00
<?php
$elements = array('entreprise' => 'Entreprise',
'economique' => 'Situation economique',
'geographique' => 'Secteur géographique',
'juridique' => 'Situation juridique',
'financier' => 'Situation financiére');
?>
<?php foreach ( $elements as $variable => $name ) : ?>
< h3 >< a href = "#" > <?php echo $name ; ?> < span style = "font-size:10px" > Nombre de critéres : <?php echo $this -> Count [ $variable ]; ?> </ span ></ a ></ h3 >
2011-12-16 09:00:12 +00:00
< div >
2011-12-19 09:44:31 +00:00
<?php foreach ( $this -> $variable as $item => $valeur ) : ?>
2011-12-16 15:00:06 +00:00
< span >
<?php echo '<b>' . $item . ' :</b> ' . (( $valeur == '0' or $valeur == '1' ) ? (( $valeur == '0' ) ? 'Non' : 'Oui' ) : str_replace ( ',' , ' à ' , (( is_array ( $valeur )) ? implode ( ' à ' , $valeur ) : $valeur ))); ?>
2011-12-19 09:44:31 +00:00
< / span > < br / >
2011-12-16 09:00:12 +00:00
<?php endforeach ; ?>
< / div >
2011-12-19 09:44:31 +00:00
<?php endforeach ; ?>