Subversion Repositories eFlore/Applications.coel-consultation

Rev

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

<!-- COL - DEBUT RESULTAT -->
<div id="col_resultat" class="coel-consultation">
        <?=$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; ?>
                <!-- recherche de publications -->
                <?php elseif ($masque['cible'] == 'publications'): ?>
                        <?php foreach ($infos['publications'] as $publication) : ?>
                                <li>
                                        <!-- <a href="<?=$publication['url']?>"> -->
                                                <?php if($publication['nomcomplet']): ?>
                                                        <?=$publication['nomcomplet']?>
                                                <?php else: ?>
                                                        <?=$publication['auteur']?> - <?=$publication['date']?> - <?=$publication['titre']?> - <?=$publication['editeur']?> - <?=$publication['nb_pages']?>
                                                <?php endif; ?>
                                        <!-- </a> -->
                                </li>
                        <?php endforeach; ?>
                <?php endif; ?>
                </ul>
        <?php endif; ?>
</div>
<!-- COL - FIN RESULTAT -->