Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 1093 Rev 1130
Line 121... Line 121...
121
			$baseflor['type_bio'] = isset($informations['type_bio']) ? $informations['type_bio'] : '';
121
			$baseflor['type_bio'] = isset($informations['type_bio']) ? $informations['type_bio'] : '';
122
			$baseflor['form_vegetale'] = isset($informations['form_vegetale']) ? $informations['form_vegetale'] : '';
122
			$baseflor['form_vegetale'] = isset($informations['form_vegetale']) ? $informations['form_vegetale'] : '';
123
			$baseflor['description']=$baseflor;
123
			$baseflor['description']=$baseflor;
124
			$this->meta->setProjet('baseflor');
124
			$this->meta->setProjet('baseflor');
125
			$meta = $this->meta->getMetaDonnees();
125
			$meta = $this->meta->getMetaDonnees();
126
			$citation = $meta[0]['citation'];
-
 
127
			$baseflor['meta']['citation'] = $citation;
126
			$baseflor['meta'] = $meta[0];
128
			$baseflor['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('baseflor');
127
			$baseflor['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('baseflor');
129
		}
128
		}
130
		$this->donnees['baseflor'] = $baseflor;
129
		$this->donnees['baseflor'] = $baseflor;
131
	}
130
	}
Line 193... Line 192...
193
			$coste['titre'] = $texte['titre'];
192
			$coste['titre'] = $texte['titre'];
194
			$coste['description'] = self::mettreEnFormeCoste($texte['texte']);
193
			$coste['description'] = self::mettreEnFormeCoste($texte['texte']);
195
		}
194
		}
196
		$this->meta->setProjet('coste');
195
		$this->meta->setProjet('coste');
197
		$meta = $this->meta->getMetaDonnees();
196
		$meta = $this->meta->getMetaDonnees();
198
		$citation = $meta[0]['citation'];
-
 
199
		$coste['meta']['citation'] = $citation;
197
		$coste['meta'] = $meta[0];
200
		$coste['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('coste');
198
		$coste['meta']['url'] = $this->appUrls->obtenirUrlMetaDonnees('coste');
201
		$this->donnees['coste'] = $coste;
199
		$this->donnees['coste'] = $coste;
202
	}
200
	}
Line 203... Line 201...
203
 
201