25 |
jpm |
1 |
<!-- COL - DEBUT FICHE STRUCTURE -->
|
23 |
jpm |
2 |
<script type="text/javascript">
|
128 |
jpm |
3 |
$(document).ready(function() {
|
|
|
4 |
$('#col-str').tabs({
|
|
|
5 |
cookie: {expires: 1}// Stocke un cookie pour 1 jour
|
|
|
6 |
});
|
23 |
jpm |
7 |
});
|
|
|
8 |
</script>
|
230 |
jpm |
9 |
<div class="coel-consultation">
|
|
|
10 |
<h1><?=$info['cs_nom']?> <span class="discretion">(id:<?=$id?>)</span></h1>
|
128 |
jpm |
11 |
|
230 |
jpm |
12 |
<div id="col-str" class="col-onglets">
|
|
|
13 |
<ul class="col-sommaire">
|
|
|
14 |
<li><a href="#col-str-general">Général</a></li>
|
|
|
15 |
<li><a href="#col-str-personnel">Personnel</a></li>
|
|
|
16 |
<li><a href="#col-str-conservation">Conservation</a></li>
|
|
|
17 |
<li><a href="#col-str-valorisation">Valorisation</a></li>
|
|
|
18 |
<li><a href="#col-str-collection">Collection</a></li>
|
|
|
19 |
<li><a href="#col-str-meta">Méta-données</a></li>
|
|
|
20 |
</ul>
|
128 |
jpm |
21 |
|
230 |
jpm |
22 |
<div id="col-str-general">
|
|
|
23 |
<h2 id="col-str-titre-general">Général</h2>
|
|
|
24 |
<h3>Renseignements administratifs</h3>
|
|
|
25 |
<dl>
|
|
|
26 |
<dt>Acronyme</dt> <dd><?=$info['_acronyme_']?></dd>
|
|
|
27 |
<dt>Statut</dt> <dd><?=$info['_type_prive_']?><?=$info['_type_public_']?></dd>
|
|
|
28 |
<dt>Date de fondation</dt> <dd><?=$info['_date_fondation_']?></dd>
|
|
|
29 |
<dt>Personnel de l'institution</dt> <dd><?=$info['_nbre_personne_']?></dd>
|
|
|
30 |
</dl>
|
|
|
31 |
|
|
|
32 |
<h3>Adresse</h3>
|
|
|
33 |
<dl>
|
|
|
34 |
<dt>Adresse</dt> <dd><?=$info['cs_adresse_01']?></dd>
|
|
|
35 |
<dt>Code postal</dt> <dd><?=$info['cs_code_postal']?></dd>
|
|
|
36 |
<dt>Ville</dt> <dd><?=$info['cs_ville']?></dd>
|
|
|
37 |
<dt>Pays</dt> <dd><?=$info['_pays_']?></dd>
|
|
|
38 |
<dt>Latitude/Longitude</dt>
|
|
|
39 |
<dd>
|
|
|
40 |
<?php if ($info['_latitude_longitude_'] == ' ') : ?>
|
|
|
41 |
<?=$info['_latitude_longitude_']?>
|
|
|
42 |
<?php else : ?>
|
|
|
43 |
<a class="lien_ext" href="<?=$info['_lien_carte_']?>"><?=$info['_latitude_longitude_']?> <img style="display:inline;" src="<?=$info['_url_img_carte_']?>" alt="Voir sur une carte" /></a>
|
|
|
44 |
<?php endif; ?>
|
|
|
45 |
</dd>
|
|
|
46 |
</dl>
|
|
|
47 |
|
|
|
48 |
<h3>Description</h3>
|
|
|
49 |
<dl class="label-court">
|
|
|
50 |
<dt>Description</dt> <dd><?=$info['cs_description']?></dd>
|
|
|
51 |
<dt>Condition d'accès</dt> <dd><?=$info['cs_condition_acces']?></dd>
|
|
|
52 |
<dt>Condition d'usage</dt> <dd><?=$info['cs_condition_usage']?></dd>
|
|
|
53 |
</dl>
|
|
|
54 |
|
|
|
55 |
<h3>Communication</h3>
|
|
|
56 |
<dl class="label-court">
|
|
|
57 |
<dt>Téléphone/Fax</dt> <dd><?=$info['_telephone_fax_']?></dd>
|
|
|
58 |
<dt>Courriel</dt> <dd><?=$info['_courriel_']?></dd>
|
|
|
59 |
<dt>Site web</dt> <dd><?=$info['_web_']?></dd>
|
|
|
60 |
</dl>
|
|
|
61 |
<hr class="nettoyeur"/>
|
|
|
62 |
</div>
|
|
|
63 |
|
|
|
64 |
<div id="col-str-personnel">
|
|
|
65 |
<h2 id="col-str-titre-personnel">Personnel</h2>
|
|
|
66 |
<?php if (count($personnel) > 0) : ?>
|
|
|
67 |
<dl class="label-moyen">
|
|
|
68 |
<dt>Personnel des collections</dt> <dd><?=count($personnel)?></dd>
|
|
|
69 |
</dl>
|
|
|
70 |
<hr class="nettoyeur"/>
|
|
|
71 |
<h3>Membres du personnel</h3>
|
|
|
72 |
<?=$personnelFrag;?>
|
|
|
73 |
<table>
|
|
|
74 |
<thead>
|
|
|
75 |
<tr>
|
|
|
76 |
<th>Fonction</th>
|
|
|
77 |
<th>Nom Complet</th>
|
|
|
78 |
<th>Prénom</th>
|
|
|
79 |
<th>Nom</th>
|
|
|
80 |
<th>Tél. Fixe / Fax</th>
|
|
|
81 |
<th>Courriel principal</th>
|
|
|
82 |
<th>Statut</th>
|
|
|
83 |
<th>Temps de travail</th>
|
|
|
84 |
<th>Spécialité principale</th>
|
|
|
85 |
<th>Contact ?</th>
|
|
|
86 |
</tr>
|
|
|
87 |
</thead>
|
|
|
88 |
<tbody>
|
|
|
89 |
<?php foreach ($personnel as $personne) : ?>
|
|
|
90 |
<tr>
|
|
|
91 |
<td><?=$personne['_fonction_']?></td>
|
|
|
92 |
<td><a href="<?=$personne['_url_']?>" title="Accèder à la fiche de la personne"><?=$personne['cp_fmt_nom_complet']?></a></td>
|
|
|
93 |
<td><?=$personne['cp_prenom']?></td>
|
|
|
94 |
<td><?=$personne['cp_nom']?></td>
|
|
|
95 |
<td><?=$personne['_tel_fax_']?></td>
|
|
|
96 |
<td><?=$personne['_courriel_']?></td>
|
|
|
97 |
<td><?=$personne['_statut_']?></td>
|
|
|
98 |
<td><?=$personne['csap_bota_travail_hebdo_tps']?></td>
|
|
|
99 |
<td><?=$personne['_specialite_']?></td>
|
|
|
100 |
<td><?=$personne['_contact_']?></td>
|
|
|
101 |
</tr>
|
|
|
102 |
<?php endforeach; ?>
|
|
|
103 |
</tbody>
|
|
|
104 |
</table>
|
|
|
105 |
<?php endif; ?>
|
|
|
106 |
</div>
|
|
|
107 |
|
|
|
108 |
<div id="col-str-conservation">
|
|
|
109 |
<h2 id="col-str-titre-conservation">Conservation</h2>
|
|
|
110 |
<h3>Formation du personnel à la conservation</h3>
|
|
|
111 |
<dl>
|
|
|
112 |
<dt>Formation en conservation</dt> <dd><?=$info['_formation_']?> <?=$info['_formation_info_']?></dd>
|
|
|
113 |
<dt>Intérêt pour une formation</dt> <dd><?=$info['_formation_interet_']?></dd>
|
|
|
114 |
</dl>
|
|
|
115 |
|
|
|
116 |
<h3>Opérations & matériels</h3>
|
|
|
117 |
<dl class="label-grand">
|
|
|
118 |
<dt>Opérations actuelles de restauration</dt> <dd><?=$info['_restauration_']?> <?=$info['_restauration_operation_']?></dd>
|
|
|
119 |
<dt>Utilisation de matériel de conservation</dt> <dd><?=$info['_materiel_conservation_']?> <?=$info['_materiel_autre_']?></dd>
|
|
|
120 |
<dt>Traitements globaux</dt> <dd><?=$info['_traitement_']?> <?=$info['_traitement_liste_']?></dd>
|
|
|
121 |
</dl>
|
|
|
122 |
|
|
|
123 |
<h3>Local</h3>
|
|
|
124 |
<dl class="label-grand">
|
|
|
125 |
<dt>Locaux spécifiques aux collections</dt> <dd><?=$info['_stockage_local_']?></dd>
|
|
|
126 |
<dt>Meubles spécifiques aux collections</dt> <dd><?=$info['_stockage_meuble_']?></dd>
|
|
|
127 |
<dt>Paramêtres maîtrisés</dt> <dd><?=$info['_stockage_parametre_']?></dd>
|
|
|
128 |
<dt>Conservation des collections en commun</dt> <dd><?=$info['_collection_commune_']?> <?=$info['_collection_commune_autre_']?></dd>
|
|
|
129 |
<dt>Accès contrôlé</dt> <dd><?=$info['_acces_controle_']?></dd>
|
|
|
130 |
</dl>
|
|
|
131 |
|
|
|
132 |
<h3>Acquisitions</h3>
|
|
|
133 |
<dl class="label-grand">
|
|
|
134 |
<dt>Acquisition de nouvelles collections</dt> <dd><?=$info['_acquisition_collection_']?></dd>
|
|
|
135 |
<dt>Mise en herbier de nouveaux échantillons</dt> <dd><?=$info['_acquisition_echantillon_']?></dd>
|
|
|
136 |
<?php if ($info['csc_mark_acquisition_echantillon'] == '1') : ?>
|
|
|
137 |
<dt>Traitement avant intégration</dt> <dd><?=$info['_acquisition_traitement_']?></dd>
|
|
|
138 |
<?php if ($info['csc_mark_acquisition_traitement'] == '1') : ?>
|
|
|
139 |
<dt>Désinsectisation</dt> <dd><?=$info['_acquisition_traitement_insecte_']?></dd>
|
|
|
140 |
<dt>Empoisonnement</dt> <dd><?=$info['_acquisition_traitement_poison_']?></dd>
|
96 |
jpm |
141 |
<?php endif; ?>
|
230 |
jpm |
142 |
<?php endif; ?>
|
|
|
143 |
</dl>
|
|
|
144 |
<hr class="nettoyeur"/>
|
|
|
145 |
</div>
|
128 |
jpm |
146 |
|
230 |
jpm |
147 |
<div id="col-str-valorisation">
|
|
|
148 |
<h2 id="col-str-titre-valorisation">Valorisation</h2>
|
|
|
149 |
<h3>Actions de valorisation</h3>
|
|
|
150 |
<dl class="label-grand">
|
|
|
151 |
<dt>Réalisation d'actions de valorisation</dt> <dd><?=$info['_action_']?> <?=$info['_action_info_']?></dd>
|
|
|
152 |
<dt>Publications</dt> <dd><?=$info['csv_publication']?></dd>
|
|
|
153 |
<dt>Autres collections</dt> <dd><?=$info['_collection_autre_']?></dd>
|
|
|
154 |
<dt>Futures actions de valorisation</dt> <dd><?=$info['_action_future_']?> <?=$info['_action_future_info_']?></dd>
|
|
|
155 |
</dl>
|
|
|
156 |
|
|
|
157 |
<h3>Accès & Usages</h3>
|
|
|
158 |
<dl class="label-grand">
|
|
|
159 |
<dt>Condition de visite pour les chercheurs</dt> <dd><?=$info['_visite_avec_motif_']?> <?=$info['_visite_avec_motif_info_']?></dd>
|
|
|
160 |
<dt>Condition d'accès du grand public</dt> <dd><?=$info['_acces_ss_motif_']?> <?=$info['_acces_ss_motif_info_']?></dd>
|
|
|
161 |
</dl>
|
|
|
162 |
|
|
|
163 |
<h3>Recherches scientifiques</h3>
|
|
|
164 |
<dl>
|
|
|
165 |
<dt>Utilisation pour la recherche</dt> <dd><?=$info['_recherche_']?></dd>
|
|
|
166 |
<?php if ($info['csv_mark_recherche'] == '1') : ?>
|
|
|
167 |
<dt>Provenance des chercheurs</dt> <dd><?=$info['_recherche_provenance_']?></dd>
|
|
|
168 |
<dt>Type de recherche</dt> <dd><?=$info['_recherche_type_']?></dd>
|
|
|
169 |
<?php endif; ?>
|
|
|
170 |
</dl>
|
|
|
171 |
<hr class="nettoyeur"/>
|
|
|
172 |
</div>
|
|
|
173 |
|
|
|
174 |
<div id="col-str-collection">
|
|
|
175 |
<h2 id="col-str-titre-collection">Collections</h2>
|
|
|
176 |
<h3>Collections liées à cette institution</h3>
|
|
|
177 |
<?php if (count($collections) > 0) : ?>
|
|
|
178 |
<?=$collectionsFrag;?>
|
|
|
179 |
<ul>
|
|
|
180 |
<?php foreach ($collections as $collection) : ?>
|
|
|
181 |
<li><a href="<?=$collection['_url_']?>" title="Accèder à la fiche de la collection"><?=$collection['cc_nom']?></a></li>
|
23 |
jpm |
182 |
<?php endforeach; ?>
|
230 |
jpm |
183 |
</ul>
|
23 |
jpm |
184 |
<?php endif; ?>
|
230 |
jpm |
185 |
</div>
|
|
|
186 |
|
|
|
187 |
<div id="col-str-meta">
|
|
|
188 |
<?=$metadonnees?>
|
|
|
189 |
</div>
|
23 |
jpm |
190 |
</div>
|
230 |
jpm |
191 |
|
|
|
192 |
<hr />
|
23 |
jpm |
193 |
</div>
|
25 |
jpm |
194 |
<!-- COL - FIN FICHE STRUCTURE -->
|