Subversion Repositories eFlore/Applications.cel

Rev

Rev 1269 | Rev 1320 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1269 Rev 1319
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) {
-
 
346
		$date_obs_timestamp = $this->convertirDateHeureMysqlEnTimestamp($info['date_observation']);
345
	private function creerTitreSimple($element) {
347
		$date = strftime('%A %d %B %Y', $date_obs_timestamp);
346
		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'])) {
347
			$titre = "Ajout d'une photo par ".$this->auteurs[$element['ci_ce_utilisateur']];
349
			$titre = "Ajout d'une photo par ".$this->auteurs[$element['ci_ce_utilisateur']].' le '.$date;
348
		} else {
350
		} else {
349
			$titre = $element['nom_sel'].' [nn'.$element['num_nom_sel'].'] par '.$this->auteurs[$element['ci_ce_utilisateur']];
351
			$titre = $element['nom_sel'].' [nn'.$element['num_nom_sel'].'] par '.$this->auteurs[$element['ci_ce_utilisateur']].' le '.$date;
350
		}
352
		}
351
		return $titre;
353
		return $titre;
Line 352... Line 354...
352
	}
354
	}