Line 460... |
Line 460... |
460 |
}
|
460 |
}
|
Line 461... |
Line 461... |
461 |
|
461 |
|
462 |
private function creerTitre($obs) {
|
462 |
private function creerTitre($obs) {
|
463 |
$date = ($obs['date_observation'] != '0000-00-00 00:00:00') ? 'le '.date("d/m/Y", strtotime($obs['date_observation'])) : '' ;
|
463 |
$date = ($obs['date_observation'] != '0000-00-00 00:00:00') ? 'le '.date("d/m/Y", strtotime($obs['date_observation'])) : '' ;
|
464 |
$nom_plante = $obs['nom_sel'].' [nn'.$obs['nom_sel_nn'].']';
|
464 |
$nom_plante = $obs['nom_sel'].' [nn'.$obs['nom_sel_nn'].']';
|
465 |
$lieu = Cel::formaterZoneGeoEtCodePourAffichage($obs);
|
465 |
$lieu = $this->formaterZoneGeoEtCodePourAffichage($obs);
|
466 |
$utilisateur = $this->getIntituleAuteur($obs['courriel_utilisateur']);
|
466 |
$utilisateur = $this->getIntituleAuteur($obs['courriel_utilisateur']);
|
467 |
$titre = "$nom_plante à $lieu par $utilisateur $date";
|
467 |
$titre = "$nom_plante à $lieu par $utilisateur $date";
|
468 |
$titre = $this->nettoyerTexte($titre);
|
468 |
$titre = $this->nettoyerTexte($titre);
|
469 |
return $titre;
|
469 |
return $titre;
|
Line 490... |
Line 490... |
490 |
$auteur = $this->getIntituleAuteur($obs['courriel_utilisateur']);
|
490 |
$auteur = $this->getIntituleAuteur($obs['courriel_utilisateur']);
|
491 |
$auteur_mail = $obs['courriel_utilisateur'];
|
491 |
$auteur_mail = $obs['courriel_utilisateur'];
|
492 |
$mots_cles_obs = $obs['mots_cles_texte'];
|
492 |
$mots_cles_obs = $obs['mots_cles_texte'];
|
493 |
$lien_correction = sprintf($this->config['settings']['phpEditUrlTpl'], $obs['id_observation']);
|
493 |
$lien_correction = sprintf($this->config['settings']['phpEditUrlTpl'], $obs['id_observation']);
|
Line 494... |
Line 494... |
494 |
|
494 |
|
495 |
$lieu = Cel::formaterZoneGeoEtCodePourAffichage($obs).' > '.$obs['lieudit'].' > '.$obs['station'];
|
495 |
$lieu = $this->formaterZoneGeoEtCodePourAffichage($obs).' > '.$obs['lieudit'].' > '.$obs['station'];
|
496 |
$milieu = $obs['milieu'];
|
496 |
$milieu = $obs['milieu'];
|
497 |
$coordonnees = ($this->etreNull($obs['latitude']) && $this->etreNull($obs['longitude'])) ? '' : $obs['latitude'].'/'.$obs['longitude'];
|
497 |
$coordonnees = ($this->etreNull($obs['latitude']) && $this->etreNull($obs['longitude'])) ? '' : $obs['latitude'].'/'.$obs['longitude'];
|
498 |
$commentaire = $obs['commentaire'];
|
498 |
$commentaire = $obs['commentaire'];
|
499 |
$date_observation = ($obs['date_observation'] != '0000-00-00 00:00:00') ? $this->formaterDate($obs['date_observation'], '%A %d %B %Y') : '';
|
499 |
$date_observation = ($obs['date_observation'] != '0000-00-00 00:00:00') ? $this->formaterDate($obs['date_observation'], '%A %d %B %Y') : '';
|