Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 798 Rev 1319
Line 496... Line 496...
496
		$item['modifier_par'] = $this->auteurs[$observation['identifiant']];
496
		$item['modifier_par'] = $this->auteurs[$observation['identifiant']];
497
		return $item;
497
		return $item;
498
	}
498
	}
Line 499... Line 499...
499
	
499
	
-
 
500
	private function creerTitre($obs) {
-
 
501
		$date_obs_timestamp = $this->convertirDateHeureMysqlEnTimestamp($observation['date_observation']);
500
	private function creerTitre($obs) {
502
		$date = strftime('%A %d %B %Y', $date_obs_timestamp);
501
		$nom_plante = $obs['nom_sel'].' [nn'.$obs['num_nom_sel'].']';
503
		$nom_plante = $obs['nom_sel'].' [nn'.$obs['num_nom_sel'].']';
502
		$lieu = $obs['location'].' ('.$obs['id_location'].')';
504
		$lieu = $obs['location'].' ('.$obs['id_location'].')';
503
		$utilisateur = $this->auteurs[$obs['identifiant']];
505
		$utilisateur = $this->auteurs[$obs['identifiant']];
504
		$titre = "$nom_plante à $lieu par $utilisateur";
506
		$titre = "$nom_plante à $lieu par $utilisateur le $date";
505
		$titre = $this->nettoyerTexte($titre);
507
		$titre = $this->nettoyerTexte($titre);
506
		return $titre;
508
		return $titre;
Line 507... Line 509...
507
	}
509
	}