Line 341... |
Line 341... |
341 |
$contenu = $this->executerService($elements);
|
341 |
$contenu = $this->executerService($elements);
|
342 |
return $contenu;
|
342 |
return $contenu;
|
343 |
}
|
343 |
}
|
Line 344... |
Line 344... |
344 |
|
344 |
|
345 |
private function creerTitreSimple($element) {
|
345 |
private function creerTitreSimple($element) {
|
346 |
$date_obs_timestamp = $this->convertirDateHeureMysqlEnTimestamp($info['date_observation']);
|
346 |
$date = $element['date_observation'];
|
347 |
$date = strftime('%A %d %B %Y', $date_obs_timestamp);
|
347 |
$date = date("d/m/Y", strtotime($date));
|
348 |
if ($this->etreNull($element['nom_sel']) && $this->etreNull($element['num_nom_sel'])) {
|
348 |
if ($this->etreNull($element['nom_sel']) && $this->etreNull($element['num_nom_sel'])) {
|
349 |
$titre = "Ajout d'une photo par ".$this->auteurs[$element['ci_ce_utilisateur']].' le '.$date;
|
349 |
$titre = "Ajout d'une photo par ".$this->auteurs[$element['ci_ce_utilisateur']].' le '.$date;
|
350 |
} else {
|
350 |
} else {
|
351 |
$titre = $element['nom_sel'].' [nn'.$element['num_nom_sel'].'] par '.$this->auteurs[$element['ci_ce_utilisateur']].' le '.$date;
|
351 |
$titre = $element['nom_sel'].' [nn'.$element['num_nom_sel'].'] par '.$this->auteurs[$element['ci_ce_utilisateur']].' le '.$date;
|