Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

<?php if ($noms) : ?>
        <ul id="ef-resultats-nv-determination">
                <? foreach ($noms as $nnTaxon => $nom) : ?>
                        <li class="zone-resultat">
                                <table >
                                <tbody >
                                <tr><td class="nom">
                                        <?php if (isset($nom['nomVerna'])) : ?>
                                                <?php $nbrNomVerna = count($nom['nomVerna']) ?>
                                                <ul class="synonymes" style="width:100%;">
                                                        <?php for ($i = 0; ($i < 3); $i++) : ?>
                                                                <?php if (isset($nom['nomVerna'][$i])) : ?>
                                                                        <li><?=$nom['nomVerna'][$i]['nom_vernaculaire']?></li>
                                                                <?php endif; ?>
                                                        <? endfor; ?>
                                                        <?php if ($nbrNomVerna === 4) : ?>
                                                                <?php if (isset($nom['nomVerna'][3])) : ?>
                                                                        <li><?=$nom['nomVerna'][3]['nom_vernaculaire']?></li>
                                                                <?php endif; ?>
                                                        <?php endif; ?>
                                                        <?php if ($nbrNomVerna > 3 && $nbrNomVerna != 4) : ?>
                                                                <li class="synonymes-autres">
                                                                        <ul>
                                                                                <?php for ($i = 3; $i < $nbrNomVerna; $i++) : ?>
                                                                                        <li><?=$nom['nomVerna'][$i]['nom_vernaculaire']?></li>
                                                                                <? endfor; ?>
                                                                        </ul>
                                                                </li>
                                                        <?php endif; ?>
                                                </ul>
                                        <?php endif; ?>
                                </td><td class="nom">
                                        <a class="lien_fiche_eflore" href="<?=$nom['urlFiche']?>" ><?=$nom['nomSci']?></a>
                                </td>
                                <td>
                                        <?php  if (isset($imagesCoste[$taxons[$nom['nomSci']]][0])) : ?> 
                                                <img class="illustration_resultat_coste" src="<?=htmlentities($imagesCoste[$taxons[$nom['nomSci']]][0])?>" alt="illustration de Coste" />
                                        <?php else : ?>
                                                <div class="vide"></div>
                                        <?php endif; ?>
                                </td>
                                <td>
                                        <?php if (isset($imagesUrls[$nnTaxon])) : ?>
                                                <img class="illustration_resultat_cel" src="<?=htmlentities($imagesUrls[$nnTaxon][0])?>" data-num-nom="<?= $nnTaxon; ?>" title="<?= $nnTaxon; ?>" alt="Images issues du CEL" style="width:100px;height:100px;display:block;float:right;"/>
                                        <?php else : ?>
                                                <p class="absent">
                                                Pas de photo<br />
                                                <a href="http://www.tela-botanica.org/page:cel" 
                                                        title="Ajouter une photographie au moyen du Carnet en Ligne" 
                                                        onclick="window.open(this.href); return false;" class="contribuer">
                                                        Contribuer
                                                </a>
                                        </p>
                                        <?php endif; ?>
                                </td>   
                                <td >
                                        <?php if (isset($repartition['urls'][$nnTaxon])) : ?>
                                                <img src="<?=htmlentities($repartition['urls'][$nnTaxon])?>" alt="Carte de répartition" class="repartition_vignette illustration_resultat_choro"/>
                                        <?php else : ?>
                                                <div class="absent">Pas de carte</div>
                                        <?php endif; ?>
                                </td></tr>
                                </tbody>
                                </table>
                        </li>
                <? endforeach; ?>
        </ul>
<?php endif; ?>
<script type="text/javascript">
        //<![CDATA[
        $(document).ready(function() {
                ajouterToggleSynonymesAutres();
        });
        function ajouterToggleSynonymesAutres() {
                $("ul#ef-resultats-nv-determination li").each(function(index) {
                        $(this).find('.synonymes-autres').prepend('<a id="bascule-'+index+'" href="#">et plus...</a>');
                        $(this).find('.synonymes-autres ul').css('display', 'none');
                        $(this).find('.synonymes-autres ul').attr('id', 'sa-'+index);
                        
                        $('#bascule-'+index).on('click', function() {
                                $('#sa-'+index).toggle('blind', {}, 500);
                                return false;
                        });
                });
        }
        //]]>
</script>