Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Regard whitespace Rev 1476 → Rev 1477

/trunk/modules/fiche/squelettes/fiche_accueil_niveau2.tpl.html
20,7 → 20,7
</h2>
<div class="categories">
 
<? $url = htmlentities(Registre::get('eFlore.index') . '?referentiel='.Registre::get('parametres.referentiel').'&niveau='.Registre::get('parametres.niveau').'&module=fiche&action=fiche&num_nom='.$num_nom.'&type_nom='.$type_nom.'&nom='.$nom.'&onglet=');?>
<? $url = htmlentities(Registre::get('eFlore.urlBase')->getUrl() . Registre::get('eFlore.index') . '?referentiel='.Registre::get('parametres.referentiel').'&niveau='.Registre::get('parametres.niveau').'&module=fiche&action=fiche&num_nom='.$num_nom.'&type_nom='.$type_nom.'&nom='.$nom.'&onglet=');?>
<ul class="categories-items">
<li class="categories-item <?= ($onglet == 'synthese') ? 'est-active' : '' ;?>" title="<?=$i18n['onglet-descr-synth']?>" id="onglet_synthese">
<h3 class="categories-item-titre"><a class="categories-item-lien" rel="synthese" href="<?=$url;?>synthese">
/trunk/modules/fiche/Fiche.php
233,6 → 233,7
'wiki' => $description->getLienWikini(),
'nom_retenu' => $this->nom_retenu->get('nom_sci'),
'mobile' => $urlMobile,
'baseUrlIco' => Registre::get('eFlore.urlBaseDossier')->getUrl() . '/',
'qr_code_png' => $this->obtenirUrlQrCode($urlMobile)
);
$this->setSortie(self::RENDU_CORPS, $this->getVue('fiche_pied_page', $donnees), true);
/trunk/modules/fiche/formateurs/Description.php
185,7 → 185,9
$this->textes->setProjet('coste');
$this->textes->setId('bdtfx.nt:'.$this->nomCourant->getNt());
$texte = $this->textes->getTexte();
if (! empty($texte['resultats'])) {
$texte = array_pop($texte['resultats']);
}
if ($texte) {
$coste['titre'] = $texte['titre'];
$coste['description'] = self::mettreEnFormeCoste($texte['texte']);
/trunk/modules/fiche/formateurs/Statut.php
69,9 → 69,11
if ($projet != "") {
$nnr = $this->nomCourant->getNnr();
$reponse = $this->statuts->getStatutsZoneGeo($projet, $nnr);
if (! empty($reponse)) {
foreach ($reponse as $statut) {
$statuts[$statut['type_protection']][] = $statut['zone_application'];
}
}
$this->meta->setProjet($projet);
$meta = $this->meta->getMetaDonnees();
}