Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1020 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!-- STATUTS de protection -->
<div class="bloc <? if ($premier == 'statuts') : echo 'allow-break'; else : echo 'no-break'; endif; ?>">
        <h2 class= "categorie">Statuts de protection</h2>
        
        <!-- STATUTS -->
        <?php if(!empty($statuts['statuts'])) : ?>
        <table class="liste_statuts_protection no-break">
                <tr>
                        <th>Zone géographique</th><th>Règle appliquée</th><th>Texte</th>
                </tr>
        
                        <?php foreach ($statuts['statuts'] as $statut) : ?>
                                <tr>
                                        <td>
                                                <?= $statut['zone_application']; ?>
                                        </td>
                                        <td>
                                                <?= $statut['regle']; ?>
                                        </td>
                                        <td>
                                                <?= $statut['texte']; ?>
                                                (<?= $statut['statut']; ?>)
                                        </td>
                                </tr>
                        <?php endforeach; ?>
        
        </table>
<?php endif; ?>

        <!-- WIKI -->
        <? if(!empty($statuts['wikini']['statuts_de_protection'])) : ?>
        <div class="no-break">
                <h2>Vos compléments sur les statuts de protection :</h2>
                <span>Données collaboratives sur les statuts de protection. </span>
                <div class="allow-break wiki" title="statuts de protection">
                        <?=$statuts['wikini']['statuts_de_protection']?>
                </div>
        </div>
        <? endif;?>
        
        <!-- VIDE DE DONNEES -->
        <? if (empty($statuts['wikini']['statuts_de_protection']) && empty($statuts['statuts']) ): ?>
                Pas de protection connue.
        <? endif;?>
        
</div>
<br/>
<br/>