Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 1355 → Rev 1356

/branches/v5.8-seynes/metier/api_0.1/Textes.php
37,7 → 37,8
$tpl = Config::get('texteTpl');
$params = array('id' => $this->id, 'txtFormat' => $this->format);
}
return $this->chargerDonnees($this->formaterUrl($tpl, $params));
$url = $this->formaterUrl($tpl, $params);
return $this->chargerDonnees($url);
}
public function getPageUrl() {
/branches/v5.8-seynes/modules/mobile/sources/Floraison.php
40,7 → 40,9
}
public function getDonnees() {
$this->getCoste();
if ($this->referentiel == 'bdtfx') {
$this->getCoste();
}
if (isset($this->CosteFormate['floraison'])) {
$this->donnees['floraison'] = $this->getIndiceMois($this->CosteFormate['floraison']);
} else {
/branches/v5.8-seynes/modules/mobile/sources/Illustrations.php
98,13 → 98,14
$tax = $this->nomCourant->getNomRetenu()->get('num_taxonomique');
$this->images->setProjet($projet);
$this->images->setNnTaxon($tax);
$costeImg = $this->images->setApi(Eflore::API_EFLORE)->getInfosImagesTaxons();
$this->images->setApi(Eflore::API_DEL);
 
if (count($costeImg) != 0) {
$img['src'] = $costeImg[key($costeImg)]['binaire.href'];
$img['legende']['titre'] = "Illustration de Coste";
$img['legende']['texte'] = " ";
if ($this->referentiel == 'bdtfx') {
$costeImg = $this->images->setApi(Eflore::API_EFLORE)->getInfosImagesTaxons();
$this->images->setApi(Eflore::API_DEL);
if (count($costeImg) != 0) {
$img['src'] = $costeImg[key($costeImg)]['binaire.href'];
$img['legende']['titre'] = "Illustration de Coste";
$img['legende']['texte'] = " ";
}
}
}
 
/branches/v5.8-seynes/modules/mobile/squelettes/theme_pyracantha_niveau1.tpl.html
99,7 → 99,7
<div class="align-center">
<a href="#div-infos-famille" class="btn btn-large btn-pop" data-content="<?= $txt_famille; ?>"
data-placement="bottom" data-toggle="popover" data-html="true"
data-original-title="<div onclick='gestionPopover();'>Pourquoi une famille de plante ?</div>"
data-original-title="<div onclick='gestionPopover();'>Pourquoi une famille de plantes ?</div>"
onclick="resetPopover();">
<? if ($famille != '') : ?>
Famille des <span class="small-caps"><?= $famille; ?></span>
/branches/v5.8-seynes/modules/fiche/formateurs/Description.php
45,7 → 45,9
$this->getWikipedia();
$this->getWikini();
$this->getDescriptionsDependantesReferentiel($this->referentiel);
$this->getCoste();
if ($this->referentiel == 'bdtfx') {
$this->getCoste();
}
return $this->donnees;
}
 
/branches/v5.8-seynes/modules/fiche/formateurs/Illustrations.php
63,7 → 63,9
$this->donnees['nt'] = $this->nomCourant->getNt();
$this->donnees['nomSciRetenu'] = $this->nomCourant->getNomRetenu()->get('nom_sci_html');
$this->donnees['cel'] = $this->getCelExport();
$this->donnees['coste'] = $this->getCoste();
if ($this->referentiel == 'bdtfx') {
$this->donnees['coste'] = $this->getCoste();
}
return $this->donnees;
}