Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

<!-- COL - DEBUT RESULTAT -->
<div id="col_resultat">
        <?=$fragmenteur;?>
        <?php if (isset($infos)) : ?>
        <ul>
        <!-- recherche de collections -->
        <?php if ($masque['cible'] == 'collections'): ?>
                <?php foreach ($infos as $info) : ?>
                        <li><?=$info['structure']['ville']?> - <a href="<?=$info['structure']['url']?>"><?=$info['structure']['nom']?></a>
                                <?php if (isset($info['collections'])) : ?>
                                <ul>
                                <?php foreach ($info['collections'] as $collection) : ?>
                                        <li><a href="<?=$collection['url']?>"><?=$collection['nom']?></a></li>
                                <?php endforeach; ?>
                                </ul>
                                <?php endif; ?>
                        </li>
                <?php endforeach; ?>
        <!-- recherche de personnes -->
        <?php elseif ($masque['cible'] == 'personnes'): ?>
                <?php foreach ($infos['personnes'] as $personne) : ?>
                        <li>
                                <a href="<?=$personne['url']?>">
                                        <?php if($personne['nomcomplet']): ?>
                                                <?=$personne['nomcomplet']?>
                                        <?php else: ?>
                                                <?=$personne['prenom']?> <?=$personne['nom']?>
                                        <?php endif; ?>
                                </a>
                                <?php if($personne['surnom']): ?>
                                        (<?=$personne['surnom']?>)
                                <?php endif; ?>
                        </li>
                <?php endforeach; ?>
        <?php endif; ?>
        </ul>
        <?php endif; ?>
</div>
<!-- COL - FIN RESULTAT -->